pub struct UnknownReport {
pub format: Option<Format>,
pub path: PathBuf,
pub total_lines: usize,
pub unknown_top_level: BTreeMap<String, Vec<usize>>,
pub unknown_payload_types: BTreeMap<String, Vec<usize>>,
pub unknown_content_item_types: BTreeMap<String, Vec<usize>>,
}Fields§
§format: Option<Format>§path: PathBuf§total_lines: usize§unknown_top_level: BTreeMap<String, Vec<usize>>§unknown_payload_types: BTreeMap<String, Vec<usize>>§unknown_content_item_types: BTreeMap<String, Vec<usize>>Implementations§
Trait Implementations§
Source§impl Debug for UnknownReport
impl Debug for UnknownReport
Source§impl Default for UnknownReport
impl Default for UnknownReport
Source§fn default() -> UnknownReport
fn default() -> UnknownReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UnknownReport
impl RefUnwindSafe for UnknownReport
impl Send for UnknownReport
impl Sync for UnknownReport
impl Unpin for UnknownReport
impl UnsafeUnpin for UnknownReport
impl UnwindSafe for UnknownReport
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more