pub struct ResolveAnimation {
pub method: ResolveAnimationMethod,
pub params: ResolveAnimationParams,
}Expand description
Gets the remote object of the Animation. resolveAnimation
Fields§
§method: ResolveAnimationMethod§params: ResolveAnimationParamsImplementations§
Source§impl ResolveAnimation
impl ResolveAnimation
pub fn builder() -> ResolveAnimationBuilder
Source§impl ResolveAnimation
impl ResolveAnimation
pub const IDENTIFIER: &'static str = "Animation.resolveAnimation"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ResolveAnimation
impl Clone for ResolveAnimation
Source§fn clone(&self) -> ResolveAnimation
fn clone(&self) -> ResolveAnimation
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 CommandResult for ResolveAnimation
impl CommandResult for ResolveAnimation
type Result = ResolveAnimationResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ResolveAnimation
impl Debug for ResolveAnimation
Source§impl<'de> Deserialize<'de> for ResolveAnimation
impl<'de> Deserialize<'de> for ResolveAnimation
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<ResolveAnimation> for AnimationCommands
impl From<ResolveAnimation> for AnimationCommands
Source§fn from(v: ResolveAnimation) -> Self
fn from(v: ResolveAnimation) -> Self
Converts to this type from the input type.
Source§impl From<ResolveAnimation> for BrowserProtocolCommands
impl From<ResolveAnimation> for BrowserProtocolCommands
Source§fn from(v: ResolveAnimation) -> Self
fn from(v: ResolveAnimation) -> Self
Converts to this type from the input type.
Source§impl From<ResolveAnimation> for Command
impl From<ResolveAnimation> for Command
Source§fn from(v: ResolveAnimation) -> Self
fn from(v: ResolveAnimation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResolveAnimation
impl PartialEq for ResolveAnimation
Source§impl Serialize for ResolveAnimation
impl Serialize for ResolveAnimation
Source§impl TryFrom<AnimationCommands> for ResolveAnimation
impl TryFrom<AnimationCommands> for ResolveAnimation
Source§type Error = AnimationCommands
type Error = AnimationCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AnimationCommands,
) -> Result<Self, <ResolveAnimation as TryFrom<AnimationCommands>>::Error>
fn try_from( e: AnimationCommands, ) -> Result<Self, <ResolveAnimation as TryFrom<AnimationCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for ResolveAnimation
impl TryFrom<BrowserProtocolCommands> for ResolveAnimation
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <ResolveAnimation as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ResolveAnimation as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ResolveAnimation
impl TryFrom<Command> for ResolveAnimation
impl StructuralPartialEq for ResolveAnimation
Auto Trait Implementations§
impl Freeze for ResolveAnimation
impl RefUnwindSafe for ResolveAnimation
impl Send for ResolveAnimation
impl Sync for ResolveAnimation
impl Unpin for ResolveAnimation
impl UnsafeUnpin for ResolveAnimation
impl UnwindSafe for ResolveAnimation
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