Expand description
Low-level parser for MTREE files. Youโll likely want to use parse_mtree_v2
instead.
Enumsยง
- This type is used in a path line to define properties for that path.
- All allowed kinds of path types.
- Represents the properties that may be set in
/set
lines. - Each line represents a line in a .MTREE file.
- Represents the properties that can be unset by
/unset
lines.
Functionsยง
- link ๐Consume all chars of a link until a newline or space is hit.
- md5 ๐Parse an MD5 hash.
- mode ๐Parse a filesystem mode.
- Parse a given .MTREE file.
- properties ๐Parse all path related properties that follow after a path declaration.
- property ๐Parse a single property.
- set_
properties ๐Parse all properties that follow a/set
command. - set_
property ๐Parse a single/set
property. - sha256 ๐Parse a SHA-256 hash.
- size ๐Get a string representing a size by consuming all integers.
- statement ๐Parse the next statement in the file.
- system_
id ๐Parse a simple system id as usize. - timestamp ๐Parse a Unix timestamp.
- unset_
properties ๐Parse all properties that follow an/unset
command. E.g./unset uid gid
โ โ This part - unset_
property ๐Parse a single/unset
property.