from_entry() — tailwindcss Function Reference
Architecture documentation for the from_entry() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 13d86d56_4bc4_caba_fdeb_cb4a0f6102fc["from_entry()"] 83e9692c_0ef1_97e5_4b56_90182cf80c7a["generate_work()"] 83e9692c_0ef1_97e5_4b56_90182cf80c7a -->|calls| 13d86d56_4bc4_caba_fdeb_cb4a0f6102fc f6052e04_5683_1ff3_94da_779bcf02de1f["from_entry_os()"] 13d86d56_4bc4_caba_fdeb_cb4a0f6102fc -->|calls| f6052e04_5683_1ff3_94da_779bcf02de1f 8f599c78_9d07_c6af_753a_52bf67a83b30["file_type()"] 13d86d56_4bc4_caba_fdeb_cb4a0f6102fc -->|calls| 8f599c78_9d07_c6af_753a_52bf67a83b30 5a41a98a_774e_c950_dcbd_cc7fe1960b89["path()"] 13d86d56_4bc4_caba_fdeb_cb4a0f6102fc -->|calls| 5a41a98a_774e_c950_dcbd_cc7fe1960b89 style 13d86d56_4bc4_caba_fdeb_cb4a0f6102fc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 333–342
fn from_entry(depth: usize, ent: &fs::DirEntry) -> Result<DirEntryRaw, Error> {
let ty = ent.file_type().map_err(|err| {
let err = Error::Io(io::Error::from(err)).with_path(ent.path());
Error::WithDepth {
depth,
err: Box::new(err),
}
})?;
DirEntryRaw::from_entry_os(depth, ent, ty)
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does from_entry() do?
from_entry() is a function in the tailwindcss codebase.
What does from_entry() call?
from_entry() calls 3 function(s): file_type, from_entry_os, path.
What calls from_entry()?
from_entry() is called by 1 function(s): generate_work.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free