Struct chromiumoxide::cdp::js_protocol::runtime::RemoteObject    [−][src]
pub struct RemoteObject {
    pub type: RemoteObjectType,
    pub subtype: Option<RemoteObjectSubtype>,
    pub class_name: Option<String>,
    pub value: Option<Value>,
    pub unserializable_value: Option<UnserializableValue>,
    pub description: Option<String>,
    pub object_id: Option<RemoteObjectId>,
    pub preview: Option<ObjectPreview>,
    pub custom_preview: Option<CustomPreview>,
}Expand description
Mirror object referencing original JavaScript object. RemoteObject
Fields
type: RemoteObjectTypeObject type.
subtype: Option<RemoteObjectSubtype>Object subtype hint. Specified for object or wasm type values only.
class_name: Option<String>Object class (constructor) name. Specified for object type values only.
value: Option<Value>Remote object value in case of primitive values or JSON values (if it was requested).
unserializable_value: Option<UnserializableValue>Primitive value which can not be JSON-stringified does not have value, but gets this
property.
description: Option<String>String representation of the object.
object_id: Option<RemoteObjectId>Unique object identifier (for non-primitive values).
preview: Option<ObjectPreview>Preview containing abbreviated property values. Specified for object type values only.
custom_preview: Option<CustomPreview>Implementations
Trait Implementations
pub fn deserialize<__D>(
    __deserializer: __D
) -> Result<RemoteObject, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
pub fn deserialize<__D>(
    __deserializer: __D
) -> Result<RemoteObject, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
pub fn serialize<__S>(
    &self, 
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
    __S: Serializer, 
pub 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
Auto Trait Implementations
impl RefUnwindSafe for RemoteObjectimpl Send for RemoteObjectimpl Sync for RemoteObjectimpl Unpin for RemoteObjectimpl UnwindSafe for RemoteObjectBlanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V