Home / Function/ from_entry_os() — tailwindcss Function Reference

from_entry_os() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  f6052e04_5683_1ff3_94da_779bcf02de1f["from_entry_os()"]
  13d86d56_4bc4_caba_fdeb_cb4a0f6102fc["from_entry()"]
  13d86d56_4bc4_caba_fdeb_cb4a0f6102fc -->|calls| f6052e04_5683_1ff3_94da_779bcf02de1f
  dc6bfca3_1f85_98a1_5321_3ce0e2355c46["metadata()"]
  f6052e04_5683_1ff3_94da_779bcf02de1f -->|calls| dc6bfca3_1f85_98a1_5321_3ce0e2355c46
  5a41a98a_774e_c950_dcbd_cc7fe1960b89["path()"]
  f6052e04_5683_1ff3_94da_779bcf02de1f -->|calls| 5a41a98a_774e_c950_dcbd_cc7fe1960b89
  9dbc0f8b_e5d8_bd69_1707_cf790a93bf6e["path()"]
  f6052e04_5683_1ff3_94da_779bcf02de1f -->|calls| 9dbc0f8b_e5d8_bd69_1707_cf790a93bf6e
  81723d9e_a035_77db_5e10_3b0d7b320636["ino()"]
  f6052e04_5683_1ff3_94da_779bcf02de1f -->|calls| 81723d9e_a035_77db_5e10_3b0d7b320636
  style f6052e04_5683_1ff3_94da_779bcf02de1f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/ignore/src/walk.rs lines 345–364

    fn from_entry_os(
        depth: usize,
        ent: &fs::DirEntry,
        ty: fs::FileType,
    ) -> Result<DirEntryRaw, Error> {
        let md = ent.metadata().map_err(|err| {
            let err = Error::Io(io::Error::from(err)).with_path(ent.path());
            Error::WithDepth {
                depth,
                err: Box::new(err),
            }
        })?;
        Ok(DirEntryRaw {
            path: ent.path(),
            ty,
            follow_link: false,
            depth,
            metadata: md,
        })
    }

Subdomains

Called By

Frequently Asked Questions

What does from_entry_os() do?
from_entry_os() is a function in the tailwindcss codebase.
What does from_entry_os() call?
from_entry_os() calls 4 function(s): ino, metadata, path, path.
What calls from_entry_os()?
from_entry_os() is called by 1 function(s): from_entry.

Analyze Your Own Codebase

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

Try Supermodel Free