pub struct File<B, S> {
pub header: FileHeader<S>,
pub prefix: Vec<(S, AttributeValue<B, S>)>,
pub strings: Vec<S>,
pub headers: Vec<Header>,
pub bodies: Vec<Body<B, S>>,
}
Fields§
§header: FileHeader<S>
§prefix: Vec<(S, AttributeValue<B, S>)>
§strings: Vec<S>
§headers: Vec<Header>
§bodies: Vec<Body<B, S>>
Trait Implementations§
Auto Trait Implementations§
impl<B, S> Freeze for File<B, S>where
S: Freeze,
impl<B, S> RefUnwindSafe for File<B, S>where
S: RefUnwindSafe,
B: RefUnwindSafe,
impl<B, S> Send for File<B, S>
impl<B, S> Sync for File<B, S>
impl<B, S> Unpin for File<B, S>
impl<B, S> UnwindSafe for File<B, S>where
S: UnwindSafe,
B: UnwindSafe,
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