pub struct Archive<'a> {
pub start: usize,
pub end: usize,
pub entries: Vec<Entry<'a>>,
pub comment: Option<Comment<'a>>,
}
Fields§
§start: usize
§end: usize
§entries: Vec<Entry<'a>>
§comment: Option<Comment<'a>>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Archive<'a>
impl<'a> RefUnwindSafe for Archive<'a>
impl<'a> Send for Archive<'a>
impl<'a> Sync for Archive<'a>
impl<'a> Unpin for Archive<'a>
impl<'a> UnwindSafe for Archive<'a>
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