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 ddb6031d_09fe_0dfb_68e1_b2ad35583052["from_entry()"] 2d1043b4_619e_f9a7_faf3_ee4e1cdbb69f["generate_work()"] 2d1043b4_619e_f9a7_faf3_ee4e1cdbb69f -->|calls| ddb6031d_09fe_0dfb_68e1_b2ad35583052 1dbca562_7c8f_0146_c42e_91926c2a8dbd["from_entry_os()"] ddb6031d_09fe_0dfb_68e1_b2ad35583052 -->|calls| 1dbca562_7c8f_0146_c42e_91926c2a8dbd 08a3def3_c46f_5695_a279_1932fa144713["file_type()"] ddb6031d_09fe_0dfb_68e1_b2ad35583052 -->|calls| 08a3def3_c46f_5695_a279_1932fa144713 afe9c39f_a243_0367_bdf6_a556fadd6383["path()"] ddb6031d_09fe_0dfb_68e1_b2ad35583052 -->|calls| afe9c39f_a243_0367_bdf6_a556fadd6383 style ddb6031d_09fe_0dfb_68e1_b2ad35583052 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