pub enum WarcFormat {
Warc,
Arc,
Unknown,
}Expand description
Web archive format labels.
Variants§
Warc
WARC format label.
Arc
ARC format label.
Unknown
Unknown or intentionally unspecified web archive format.
Implementations§
Trait Implementations§
Source§impl Clone for WarcFormat
impl Clone for WarcFormat
Source§fn clone(&self) -> WarcFormat
fn clone(&self) -> WarcFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WarcFormat
impl Debug for WarcFormat
Source§impl Default for WarcFormat
impl Default for WarcFormat
Source§fn default() -> WarcFormat
fn default() -> WarcFormat
Returns the “default value” for a type. Read more
Source§impl Display for WarcFormat
impl Display for WarcFormat
Source§impl Hash for WarcFormat
impl Hash for WarcFormat
Source§impl Ord for WarcFormat
impl Ord for WarcFormat
Source§fn cmp(&self, other: &WarcFormat) -> Ordering
fn cmp(&self, other: &WarcFormat) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WarcFormat
impl PartialEq for WarcFormat
Source§fn eq(&self, other: &WarcFormat) -> bool
fn eq(&self, other: &WarcFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WarcFormat
impl PartialOrd for WarcFormat
impl Copy for WarcFormat
impl Eq for WarcFormat
impl StructuralPartialEq for WarcFormat
Auto Trait Implementations§
impl Freeze for WarcFormat
impl RefUnwindSafe for WarcFormat
impl Send for WarcFormat
impl Sync for WarcFormat
impl Unpin for WarcFormat
impl UnsafeUnpin for WarcFormat
impl UnwindSafe for WarcFormat
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