#[non_exhaustive]pub enum SaveMode {
Mhtml,
}
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.
Mhtml
Trait Implementations§
Source§impl<'a> FromValue<'a> for SaveMode
impl<'a> FromValue<'a> for SaveMode
Source§type Checker = GenericValueTypeChecker<SaveMode>
type Checker = GenericValueTypeChecker<SaveMode>
Value type checker.
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moreSource§impl Ord for SaveMode
impl Ord for SaveMode
Source§impl PartialOrd for SaveMode
impl PartialOrd for SaveMode
Source§impl StaticType for SaveMode
impl StaticType for SaveMode
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for SaveMode
impl Eq for SaveMode
impl StructuralPartialEq for SaveMode
Auto Trait Implementations§
impl Freeze for SaveMode
impl RefUnwindSafe for SaveMode
impl Send for SaveMode
impl Sync for SaveMode
impl Unpin for SaveMode
impl UnwindSafe for SaveMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.