pub struct RemoteObjectReference {
pub handle: Handle,
pub shared_id: Option<SharedId>,
pub extensible: HashMap<String, Value>,
}Fields§
§handle: Handle§extensible: HashMap<String, Value>Implementations§
Source§impl RemoteObjectReference
impl RemoteObjectReference
pub fn builder() -> RemoteObjectReferenceBuilder
Source§impl RemoteObjectReference
impl RemoteObjectReference
pub const IDENTIFIER: &'static str = "script.RemoteObjectReference"
pub const DOMAIN_DIRECTION: &'static str = "all"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemoteObjectReference
impl Clone for RemoteObjectReference
Source§fn clone(&self) -> RemoteObjectReference
fn clone(&self) -> RemoteObjectReference
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 RemoteObjectReference
impl Debug for RemoteObjectReference
Source§impl<'de> Deserialize<'de> for RemoteObjectReference
impl<'de> Deserialize<'de> for RemoteObjectReference
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 From<RemoteObjectReference> for RemoteReference
impl From<RemoteObjectReference> for RemoteReference
Source§fn from(v: RemoteObjectReference) -> Self
fn from(v: RemoteObjectReference) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemoteObjectReference
impl PartialEq for RemoteObjectReference
Source§impl Serialize for RemoteObjectReference
impl Serialize for RemoteObjectReference
Source§impl TryFrom<RemoteReference> for RemoteObjectReference
impl TryFrom<RemoteReference> for RemoteObjectReference
Source§type Error = RemoteReference
type Error = RemoteReference
The type returned in the event of a conversion error.
impl StructuralPartialEq for RemoteObjectReference
Auto Trait Implementations§
impl Freeze for RemoteObjectReference
impl RefUnwindSafe for RemoteObjectReference
impl Send for RemoteObjectReference
impl Sync for RemoteObjectReference
impl Unpin for RemoteObjectReference
impl UnsafeUnpin for RemoteObjectReference
impl UnwindSafe for RemoteObjectReference
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more