pub struct Meta {
pub source_format: SerdeFormat,
pub file_format: SerdeFormat,
pub source_filename: Option<String>,
pub root: Root,
}Expand description
Description of how a disassembled directory was produced.
Fields§
§source_format: SerdeFormatFormat the original input file was read from.
file_format: SerdeFormatFormat used to write the split files on disk.
source_filename: Option<String>Original input file name (with extension), used as a default when reassembling without an explicit output path.
root: RootWhether the document root was an object or an array.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Meta
impl<'de> Deserialize<'de> for Meta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnsafeUnpin for Meta
impl UnwindSafe for Meta
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