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 OxideEngine PreProcessors calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  974cd457_d8da_195e_0d7d_0390f4fbf8c6["metadata_internal()"]
  b3ca296d_790b_9bf3_23ea_56e5c5c48565["walk.rs"]
  974cd457_d8da_195e_0d7d_0390f4fbf8c6 -->|defined in| b3ca296d_790b_9bf3_23ea_56e5c5c48565
  e779231b_985a_36eb_def8_55058c03b00a["metadata()"]
  e779231b_985a_36eb_def8_55058c03b00a -->|calls| 974cd457_d8da_195e_0d7d_0390f4fbf8c6
  e779231b_985a_36eb_def8_55058c03b00a["metadata()"]
  974cd457_d8da_195e_0d7d_0390f4fbf8c6 -->|calls| e779231b_985a_36eb_def8_55058c03b00a
  style 974cd457_d8da_195e_0d7d_0390f4fbf8c6 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