path() — tailwindcss Function Reference
Architecture documentation for the path() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 22e554e0_3279_5bba_cd5c_45aa591685d1["path()"] 5a41a98a_774e_c950_dcbd_cc7fe1960b89["path()"] 5a41a98a_774e_c950_dcbd_cc7fe1960b89 -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 9dbc0f8b_e5d8_bd69_1707_cf790a93bf6e["path()"] 9dbc0f8b_e5d8_bd69_1707_cf790a93bf6e -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 e611aa38_0264_a87e_bc57_816638dacc44["add_parents()"] e611aa38_0264_a87e_bc57_816638dacc44 -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 d16b5ee3_02a3_92c2_a820_d7fe222d6187["read_dir()"] d16b5ee3_02a3_92c2_a820_d7fe222d6187 -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 e63c9a61_c0eb_fc8e_2a92_ab9b1af2a4db["run_one()"] e63c9a61_c0eb_fc8e_2a92_ab9b1af2a4db -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 83e9692c_0ef1_97e5_4b56_90182cf80c7a["generate_work()"] 83e9692c_0ef1_97e5_4b56_90182cf80c7a -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 0cf690a4_64b9_41a7_da9a_614df11c4073["symlink_loop()"] 0cf690a4_64b9_41a7_da9a_614df11c4073 -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 daabf474_f723_48b1_7aee_1bb9a40511eb["same_file_system()"] daabf474_f723_48b1_7aee_1bb9a40511eb -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 1aaba1c8_3437_8f42_7482_2b7f27702c4c["filter()"] 1aaba1c8_3437_8f42_7482_2b7f27702c4c -->|calls| 22e554e0_3279_5bba_cd5c_45aa591685d1 9dbc0f8b_e5d8_bd69_1707_cf790a93bf6e["path()"] 22e554e0_3279_5bba_cd5c_45aa591685d1 -->|calls| 9dbc0f8b_e5d8_bd69_1707_cf790a93bf6e style 22e554e0_3279_5bba_cd5c_45aa591685d1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 146–153
fn path(&self) -> &Path {
use self::DirEntryInner::*;
match *self {
Stdin => Path::new("<stdin>"),
Walkdir(ref x) => x.path(),
Raw(ref x) => x.path(),
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does path() do?
path() is a function in the tailwindcss codebase.
What does path() call?
path() calls 1 function(s): path.
What calls path()?
path() is called by 9 function(s): add_parents, filter, generate_work, path, path, read_dir, run_one, same_file_system, and 1 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free