fmt() — tailwindcss Function Reference
Architecture documentation for the fmt() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD aea8fc9a_84f6_6fb9_8e41_5ef4c0439482["fmt()"] 995a77de_1d75_37cb_bcd4_c592fdfc3614["fmt()"] 995a77de_1d75_37cb_bcd4_c592fdfc3614 -->|calls| aea8fc9a_84f6_6fb9_8e41_5ef4c0439482 995a77de_1d75_37cb_bcd4_c592fdfc3614["fmt()"] aea8fc9a_84f6_6fb9_8e41_5ef4c0439482 -->|calls| 995a77de_1d75_37cb_bcd4_c592fdfc3614 style aea8fc9a_84f6_6fb9_8e41_5ef4c0439482 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 518–536
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("WalkBuilder")
.field("paths", &self.paths)
.field("ig_builder", &self.ig_builder)
.field("max_depth", &self.max_depth)
.field("min_depth", &self.min_depth)
.field("max_filesize", &self.max_filesize)
.field("follow_links", &self.follow_links)
.field("same_file_system", &self.same_file_system)
.field("sorter", &"<...>")
.field("threads", &self.threads)
.field("skip", &self.skip)
.field("filter", &"<...>")
.field(
"global_gitignores_relative_to",
&self.global_gitignores_relative_to,
)
.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