Enum tar::HeaderMode
source · #[non_exhaustive]
pub enum HeaderMode {
Complete,
Deterministic,
}
Expand description
Declares the information that should be included when filling a Header from filesystem metadata.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Complete
All supported metadata, including mod/access times and ownership will be included.
Deterministic
Only metadata that is directly relevant to the identity of a file will be included. In particular, ownership and mod/access times are excluded.
Trait Implementations§
source§impl Clone for HeaderMode
impl Clone for HeaderMode
source§fn clone(&self) -> HeaderMode
fn clone(&self) -> HeaderMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HeaderMode
impl Debug for HeaderMode
source§impl PartialEq<HeaderMode> for HeaderMode
impl PartialEq<HeaderMode> for HeaderMode
source§fn eq(&self, other: &HeaderMode) -> bool
fn eq(&self, other: &HeaderMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.