Home / Function/ metadata_internal() — tailwindcss Function Reference

metadata_internal() — tailwindcss Function Reference

Architecture documentation for the metadata_internal() function in walk.rs from the tailwindcss codebase.

Function rust Oxide PreProcessors calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  35264e5d_9345_588d_34f4_5db6c481692b["metadata_internal()"]
  8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"]
  35264e5d_9345_588d_34f4_5db6c481692b -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79
  866a73c9_ab6c_d6a8_247d_b7de7fc01ac9["metadata()"]
  866a73c9_ab6c_d6a8_247d_b7de7fc01ac9 -->|calls| 35264e5d_9345_588d_34f4_5db6c481692b
  866a73c9_ab6c_d6a8_247d_b7de7fc01ac9["metadata()"]
  35264e5d_9345_588d_34f4_5db6c481692b -->|calls| 866a73c9_ab6c_d6a8_247d_b7de7fc01ac9
  style 35264e5d_9345_588d_34f4_5db6c481692b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/ignore/src/walk.rs lines 295–302

    fn metadata_internal(&self) -> Result<fs::Metadata, Error> {
        if self.follow_link {
            fs::metadata(&self.path)
        } else {
            Ok(self.metadata.clone())
        }
        .map_err(|err| Error::Io(io::Error::from(err)).with_path(&self.path))
    }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does metadata_internal() do?
metadata_internal() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is metadata_internal() defined?
metadata_internal() is defined in crates/ignore/src/walk.rs at line 295.
What does metadata_internal() call?
metadata_internal() calls 1 function(s): metadata.
What calls metadata_internal()?
metadata_internal() is called by 1 function(s): metadata.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free