pub struct Loaded {
pub annotations: Vec<Annotation>,
pub skipped: usize,
}Expand description
What load found, including what it could not read.
Fields§
§annotations: Vec<Annotation>§skipped: usizeLines that did not parse.
Counted and reported rather than hidden. One line written by some future version must not make every other annotation quietly invisible, and a caller that knows how many were skipped can say so.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Loaded
impl RefUnwindSafe for Loaded
impl Send for Loaded
impl Sync for Loaded
impl Unpin for Loaded
impl UnsafeUnpin for Loaded
impl UnwindSafe for Loaded
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