[−][src]Struct gzip_header::GzHeader
A structure representing the raw header of a gzip stream.
The header can contain metadata about the file that was compressed, if present.
Methods
impl GzHeader
[src][−]
pub fn filename(&self) -> Option<&[u8]>
[src][−]
Returns the filename
field of this gzip header, if present.
The filename
field the gzip header is supposed to be stored using ISO 8859-1 (LATIN-1)
encoding and be zero-terminated if following the specification.
pub fn extra(&self) -> Option<&[u8]>
[src][−]
Returns the extra
field of this gzip header, if present.
pub fn comment(&self) -> Option<&[u8]>
[src][−]
Returns the comment
field of this gzip stream's header, if present.
The comment
field in the gzip header is supposed to be stored using ISO 8859-1 (LATIN-1)
encoding and be zero-terminated if following the specification.
pub fn mtime(&self) -> u32
[src][−]
Returns the mtime
field of this gzip header.
This gives the most recent modification time of the contained file, or alternatively
the timestamp of when the file was compressed if the data did not come from a file, or
a timestamp was not available when compressing. The time is specified the Unix format,
that is: seconds since 00:00:00 GMT, Jan. 1, 1970. (Not that this may cause problems for
MS-DOS and other systems that use local rather than Universal time.)
An mtime
value of 0 means that the timestamp is not set.
pub fn mtime_as_datetime(&self) -> Option<SystemTime>
[src][−]
Returns the mtime
field of this gzip header as a SystemTime
if present.
Returns None
if the mtime
is not set, i.e 0.
See mtime
for more detail.
pub fn os(&self) -> u8
[src][−]
Returns the os
field of this gzip stream's header.
pub fn xfl(&self) -> u8
[src][−]
Returns the xfl
field of this gzip stream's header.
Trait Implementations
impl Clone for GzHeader
[src][+]
impl Debug for GzHeader
[src][+]
impl Display for GzHeader
[src][+]
impl Eq for GzHeader
[src]
impl Hash for GzHeader
[src][+]
impl PartialEq<GzHeader> for GzHeader
[src][+]
impl StructuralEq for GzHeader
[src]
impl StructuralPartialEq for GzHeader
[src]
Auto Trait Implementations
impl RefUnwindSafe for GzHeader
impl Send for GzHeader
impl Sync for GzHeader
impl Unpin for GzHeader
impl UnwindSafe for GzHeader
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,
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,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,