Home / Function/ stdout_handle() — tailwindcss Function Reference

stdout_handle() — tailwindcss Function Reference

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

Function rust Oxide PreProcessors calls 1 called by 1

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

crates/ignore/src/walk.rs lines 1946–1959

fn stdout_handle() -> Option<Handle> {
    let h = match Handle::stdout() {
        Err(_) => return None,
        Ok(h) => h,
    };
    let md = match h.as_file().metadata() {
        Err(_) => return None,
        Ok(md) => md,
    };
    if !md.is_file() {
        return None;
    }
    Some(h)
}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free