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.

Function rust RustCore MachineExtractor calls 3 called by 1

Entity Profile

Dependency Diagram

graph TD
  1dbca562_7c8f_0146_c42e_91926c2a8dbd["from_entry_os()"]
  ddb6031d_09fe_0dfb_68e1_b2ad35583052["from_entry()"]
  ddb6031d_09fe_0dfb_68e1_b2ad35583052 -->|calls| 1dbca562_7c8f_0146_c42e_91926c2a8dbd
  d87313f3_8b5b_0a2c_87f2_71b90771dc0c["metadata()"]
  1dbca562_7c8f_0146_c42e_91926c2a8dbd -->|calls| d87313f3_8b5b_0a2c_87f2_71b90771dc0c
  afe9c39f_a243_0367_bdf6_a556fadd6383["path()"]
  1dbca562_7c8f_0146_c42e_91926c2a8dbd -->|calls| afe9c39f_a243_0367_bdf6_a556fadd6383
  57b384dc_479f_c3aa_b09e_f006cf3b568f["ino()"]
  1dbca562_7c8f_0146_c42e_91926c2a8dbd -->|calls| 57b384dc_479f_c3aa_b09e_f006cf3b568f
  style 1dbca562_7c8f_0146_c42e_91926c2a8dbd 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,
        })
    }

Domain

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 3 function(s): ino, metadata, 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