pub struct Member {
pub name: Vec<u8>,
pub source: DynSource,
}Expand description
One member of a multi-member archive: its raw name and byte source. Archive
member names are bytes, not guaranteed UTF-8, so name is Vec<u8>.
Fields§
§name: Vec<u8>The member’s raw (possibly non-UTF-8) name.
source: DynSourceThe member’s byte source, ready to re-enter resolution.
Auto Trait Implementations§
impl !RefUnwindSafe for Member
impl !UnwindSafe for Member
impl Freeze for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnsafeUnpin for Member
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