pub enum RemoteObjectType {
Object,
Function,
Undefined,
String,
Number,
Boolean,
Symbol,
Bigint,
}Variants§
Trait Implementations§
Source§impl Clone for RemoteObjectType
impl Clone for RemoteObjectType
Source§fn clone(&self) -> RemoteObjectType
fn clone(&self) -> RemoteObjectType
Returns a duplicate 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 RemoteObjectType
impl Debug for RemoteObjectType
Source§impl<'de> Deserialize<'de> for RemoteObjectType
impl<'de> Deserialize<'de> for RemoteObjectType
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
Source§impl PartialEq for RemoteObjectType
impl PartialEq for RemoteObjectType
Source§impl Serialize for RemoteObjectType
impl Serialize for RemoteObjectType
impl StructuralPartialEq for RemoteObjectType
Auto Trait Implementations§
impl Freeze for RemoteObjectType
impl RefUnwindSafe for RemoteObjectType
impl Send for RemoteObjectType
impl Sync for RemoteObjectType
impl Unpin for RemoteObjectType
impl UnwindSafe for RemoteObjectType
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