Struct gix_config::file::Metadata
source · pub struct Metadata {
pub path: Option<PathBuf>,
pub source: Source,
pub level: u8,
pub trust: Trust,
}
Expand description
Additional information about a section.
Fields§
§path: Option<PathBuf>
The file path of the source, if known.
source: Source
Where the section is coming from.
level: u8
The levels of indirection of the file, with 0 being a section
that was directly loaded, and 1 being an include.path
of a
level 0 file.
trust: Trust
The trust-level for the section this meta-data is associated with.
Implementations§
source§impl Metadata
impl Metadata
Instantiation
sourcepub fn try_from_path(path: impl Into<PathBuf>, source: Source) -> Result<Self>
pub fn try_from_path(path: impl Into<PathBuf>, source: Source) -> Result<Self>
Return metadata as derived from the given path
at source
, which will also be used to derive the trust level
by checking its ownership.
Trait Implementations§
source§impl Ord for Metadata
impl Ord for Metadata
source§impl PartialEq<Metadata> for Metadata
impl PartialEq<Metadata> for Metadata
source§impl PartialOrd<Metadata> for Metadata
impl PartialOrd<Metadata> for Metadata
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more