Struct chrome_remote_interface_model::animation::ResolveAnimationReturn [−][src]
Gets the remote object of the Animation.
Implementations
impl ResolveAnimationReturn[src]
pub fn new(remote_object: RemoteObject) -> Self[src]
pub fn remote_object(&self) -> &RemoteObject[src]
Corresponding remote object.
Methods from Deref<Target = RemoteObject>
pub fn type(&self) -> &RemoteObjectType[src]
Object type.
pub fn subtype(&self) -> Option<&RemoteObjectSubtype>[src]
Object subtype hint. Specified for object or wasm type values only.
pub fn class_name(&self) -> Option<&String>[src]
Object class (constructor) name. Specified for object type values only.
pub fn value(&self) -> Option<&JsonValue>[src]
Remote object value in case of primitive values or JSON values (if it was requested).
pub fn unserializable_value(&self) -> Option<&UnserializableValue>[src]
Primitive value which can not be JSON-stringified does not have value, but gets this
property.
pub fn description(&self) -> Option<&String>[src]
String representation of the object.
pub fn object_id(&self) -> Option<&RemoteObjectId>[src]
Unique object identifier (for non-primitive values).
pub fn preview(&self) -> Option<&JsonValue>[src]
Preview containing abbreviated property values. Specified for object type values only.
pub fn custom_preview(&self) -> Option<&JsonValue>[src]
Trait Implementations
impl Clone for ResolveAnimationReturn[src]
fn clone(&self) -> ResolveAnimationReturn[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ResolveAnimationReturn[src]
impl Deref for ResolveAnimationReturn[src]
type Target = RemoteObject
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target[src]
impl<'de> Deserialize<'de> for ResolveAnimationReturn[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for ResolveAnimationReturn[src]
Auto Trait Implementations
impl RefUnwindSafe for ResolveAnimationReturn[src]
impl Send for ResolveAnimationReturn[src]
impl Sync for ResolveAnimationReturn[src]
impl Unpin for ResolveAnimationReturn[src]
impl UnwindSafe for ResolveAnimationReturn[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,