fmt() — tailwindcss Function Reference
Architecture documentation for the fmt() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 00a57479_5aea_6732_62d3_674fd4ef4fa5["fmt()"] 334f9ce4_4ea7_84ce_1a54_52a0dbd04ed3["fmt()"] 334f9ce4_4ea7_84ce_1a54_52a0dbd04ed3 -->|calls| 00a57479_5aea_6732_62d3_674fd4ef4fa5 334f9ce4_4ea7_84ce_1a54_52a0dbd04ed3["fmt()"] 00a57479_5aea_6732_62d3_674fd4ef4fa5 -->|calls| 334f9ce4_4ea7_84ce_1a54_52a0dbd04ed3 style 00a57479_5aea_6732_62d3_674fd4ef4fa5 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