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 22ec8950_f405_d7ab_6054_ecd191592786["from_entry()"] 8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"] 22ec8950_f405_d7ab_6054_ecd191592786 -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79 dc874db4_e8a3_5292_d49c_2245b8b18f45["generate_work()"] dc874db4_e8a3_5292_d49c_2245b8b18f45 -->|calls| 22ec8950_f405_d7ab_6054_ecd191592786 c30294ef_bb08_283b_8249_9905047aecb1["file_type()"] 22ec8950_f405_d7ab_6054_ecd191592786 -->|calls| c30294ef_bb08_283b_8249_9905047aecb1 934d114d_964b_414a_2b41_82e8174b7c3d["path()"] 22ec8950_f405_d7ab_6054_ecd191592786 -->|calls| 934d114d_964b_414a_2b41_82e8174b7c3d bd605f97_f731_c85b_0293_e5bf9c6573a7["from_entry_os()"] 22ec8950_f405_d7ab_6054_ecd191592786 -->|calls| bd605f97_f731_c85b_0293_e5bf9c6573a7 style 22ec8950_f405_d7ab_6054_ecd191592786 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
Defined In
Called By
Source
Frequently Asked Questions
What does from_entry() do?
from_entry() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is from_entry() defined?
from_entry() is defined in crates/ignore/src/walk.rs at line 333.
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