pub enum JsUintOrText {
JsUint(JsUint),
Text(String),
}Variants§
Trait Implementations§
Source§impl Debug for JsUintOrText
impl Debug for JsUintOrText
Source§impl<'de> Deserialize<'de> for JsUintOrText
impl<'de> Deserialize<'de> for JsUintOrText
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JsUintOrText
impl RefUnwindSafe for JsUintOrText
impl Send for JsUintOrText
impl Sync for JsUintOrText
impl Unpin for JsUintOrText
impl UnwindSafe for JsUintOrText
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