fmt() — tailwindcss Function Reference
Architecture documentation for the fmt() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD df8330b8_8c2b_a781_afbf_e533586489b7["fmt()"] 8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"] df8330b8_8c2b_a781_afbf_e533586489b7 -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79 style df8330b8_8c2b_a781_afbf_e533586489b7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 265–274
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
// Leaving out FileType because it doesn't have a debug impl
// in Rust 1.9. We could add it if we really wanted to by manually
// querying each possibly file type. Meh. ---AG
f.debug_struct("DirEntryRaw")
.field("path", &self.path)
.field("follow_link", &self.follow_link)
.field("depth", &self.depth)
.finish()
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does fmt() do?
fmt() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is fmt() defined?
fmt() is defined in crates/ignore/src/walk.rs at line 265.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free