[−][src]Struct rc_zip::Version
A zip version (either created by, or required when reading an archive).
Versions determine which features are supported by a tool, and which features are required when reading a file.
For more information, see the .ZIP Application Note, section 4.4.2.
Methods
impl Version[src]
pub fn parse<'a>(i: &'a [u8]) -> IResult<&'a [u8], Self, (&'a [u8], ErrorKind)>[src]
Parse a version from a byte slice
pub fn host_system(&self) -> HostSystem[src]
Identifies the host system on which the zip attributes are compatible.
pub fn host(&self) -> u8[src]
Integer host system
pub fn version(&self) -> u8[src]
Integer version, e.g. 45 for Zip version 4.5
pub fn major(&self) -> u32[src]
ZIP specification major version
See APPNOTE, section 4.4.2.1
pub fn minor(&self) -> u32[src]
ZIP specification minor version
See APPNOTE, section 4.4.2.1
Trait Implementations
impl Clone for Version[src]
impl Copy for Version[src]
impl Debug for Version[src]
impl Eq for Version[src]
impl Hash for Version[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Version> for Version[src]
impl StructuralEq for Version[src]
impl StructuralPartialEq for Version[src]
Auto Trait Implementations
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,