pub struct TomlFile {
pub path: PathBuf,
pub content: String,
pub parsed: Value,
pub metadata: TomlMetadata,
}Expand description
TOML file representation with metadata
Fields§
§path: PathBufFile path
content: StringTOML content as string
parsed: ValueParsed TOML as JSON Value for manipulation
metadata: TomlMetadataFile metadata
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TomlFile
impl RefUnwindSafe for TomlFile
impl Send for TomlFile
impl Sync for TomlFile
impl Unpin for TomlFile
impl UnwindSafe for TomlFile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more