#[non_exhaustive]#[repr(u32)]pub enum SupportedType {
TextHtml = 0,
TextXml = 1,
ApplicationXml = 2,
ApplicationXhtmlXml = 3,
ImageSvgXml = 4,
}
Expand description
The SupportedType
enum.
This API requires the following crate features to be activated: SupportedType
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.
Implementations§
Source§impl SupportedType
impl SupportedType
pub fn from_js_value(obj: &JsValue) -> Option<SupportedType>
Trait Implementations§
Source§impl Clone for SupportedType
impl Clone for SupportedType
Source§fn clone(&self) -> SupportedType
fn clone(&self) -> SupportedType
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 SupportedType
impl Debug for SupportedType
Source§impl From<SupportedType> for JsValue
impl From<SupportedType> for JsValue
Source§fn from(val: SupportedType) -> Self
fn from(val: SupportedType) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for SupportedType
impl FromWasmAbi for SupportedType
Source§impl IntoWasmAbi for SupportedType
impl IntoWasmAbi for SupportedType
Source§impl OptionFromWasmAbi for SupportedType
impl OptionFromWasmAbi for SupportedType
Source§impl OptionIntoWasmAbi for SupportedType
impl OptionIntoWasmAbi for SupportedType
Source§impl PartialEq for SupportedType
impl PartialEq for SupportedType
impl Copy for SupportedType
impl Eq for SupportedType
impl StructuralPartialEq for SupportedType
Auto Trait Implementations§
impl Freeze for SupportedType
impl RefUnwindSafe for SupportedType
impl Send for SupportedType
impl Sync for SupportedType
impl Unpin for SupportedType
impl UnwindSafe for SupportedType
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> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.