pub enum RemoteObjectType {
Object,
Function,
Undefined,
String,
Number,
Boolean,
Symbol,
Bigint,
}Expand description
Object type.
Variants§
Trait Implementations§
Source§impl AsRef<str> for RemoteObjectType
impl AsRef<str> for RemoteObjectType
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<RemoteObjectType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RemoteObjectType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for RemoteObjectType
impl FromStr for RemoteObjectType
Source§impl Hash for RemoteObjectType
impl Hash for RemoteObjectType
Source§impl PartialEq for RemoteObjectType
impl PartialEq for RemoteObjectType
Source§impl Serialize for RemoteObjectType
impl Serialize for RemoteObjectType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.