pub struct ZipString(pub Vec<u8>);Expand description
A raw zip string, with no specific encoding.
This is used while parsing a zip archive’s central directory, before we know what encoding is used.
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ZipString
impl Send for ZipString
impl Sync for ZipString
impl Unpin for ZipString
impl UnwindSafe for ZipString
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