pub struct Decoded {
pub format_name: String,
pub fields: Vec<FieldNode>,
pub warnings: Vec<String>,
}Expand description
The result of decoding one partition.
Fields§
§format_name: StringHuman name of the format that was decoded, e.g. "PFS_NODE".
fields: Vec<FieldNode>§warnings: Vec<String>Non-fatal spec violations and remarks surfaced to the user.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Decoded
impl RefUnwindSafe for Decoded
impl Send for Decoded
impl Sync for Decoded
impl Unpin for Decoded
impl UnsafeUnpin for Decoded
impl UnwindSafe for Decoded
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