fmt() — tailwindcss Function Reference
Architecture documentation for the fmt() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 995a77de_1d75_37cb_bcd4_c592fdfc3614["fmt()"] aea8fc9a_84f6_6fb9_8e41_5ef4c0439482["fmt()"] aea8fc9a_84f6_6fb9_8e41_5ef4c0439482 -->|calls| 995a77de_1d75_37cb_bcd4_c592fdfc3614 aea8fc9a_84f6_6fb9_8e41_5ef4c0439482["fmt()"] 995a77de_1d75_37cb_bcd4_c592fdfc3614 -->|calls| aea8fc9a_84f6_6fb9_8e41_5ef4c0439482 style 995a77de_1d75_37cb_bcd4_c592fdfc3614 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
Calls
Called By
Source
Frequently Asked Questions
What does fmt() do?
fmt() is a function in the tailwindcss codebase.
What does fmt() call?
fmt() calls 1 function(s): fmt.
What calls fmt()?
fmt() is called by 1 function(s): fmt.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free