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 RustCore MachineExtractor calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  0cb2f6cb_85dd_272f_c6d9_3197eda0357c["metadata_internal()"]
  0eedd52b_7728_cb9f_c855_4f37d26143cf["metadata()"]
  0eedd52b_7728_cb9f_c855_4f37d26143cf -->|calls| 0cb2f6cb_85dd_272f_c6d9_3197eda0357c
  0eedd52b_7728_cb9f_c855_4f37d26143cf["metadata()"]
  0cb2f6cb_85dd_272f_c6d9_3197eda0357c -->|calls| 0eedd52b_7728_cb9f_c855_4f37d26143cf
  style 0cb2f6cb_85dd_272f_c6d9_3197eda0357c 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.
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