pub struct ReleaseAnimations {
pub method: ReleaseAnimationsMethod,
pub params: ReleaseAnimationsParams,
}Expand description
Releases a set of animations to no longer be manipulated. releaseAnimations
Fields§
§method: ReleaseAnimationsMethod§params: ReleaseAnimationsParamsImplementations§
Source§impl ReleaseAnimations
impl ReleaseAnimations
pub fn builder() -> ReleaseAnimationsBuilder
Source§impl ReleaseAnimations
impl ReleaseAnimations
pub const IDENTIFIER: &'static str = "Animation.releaseAnimations"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ReleaseAnimations
impl Clone for ReleaseAnimations
Source§fn clone(&self) -> ReleaseAnimations
fn clone(&self) -> ReleaseAnimations
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 ReleaseAnimations
impl CommandResult for ReleaseAnimations
type Result = ReleaseAnimationsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ReleaseAnimations
impl Debug for ReleaseAnimations
Source§impl<'de> Deserialize<'de> for ReleaseAnimations
impl<'de> Deserialize<'de> for ReleaseAnimations
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<ReleaseAnimations> for AnimationCommands
impl From<ReleaseAnimations> for AnimationCommands
Source§fn from(v: ReleaseAnimations) -> Self
fn from(v: ReleaseAnimations) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseAnimations> for BrowserProtocolCommands
impl From<ReleaseAnimations> for BrowserProtocolCommands
Source§fn from(v: ReleaseAnimations) -> Self
fn from(v: ReleaseAnimations) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseAnimations> for Command
impl From<ReleaseAnimations> for Command
Source§fn from(v: ReleaseAnimations) -> Self
fn from(v: ReleaseAnimations) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReleaseAnimations
impl PartialEq for ReleaseAnimations
Source§impl Serialize for ReleaseAnimations
impl Serialize for ReleaseAnimations
Source§impl TryFrom<AnimationCommands> for ReleaseAnimations
impl TryFrom<AnimationCommands> for ReleaseAnimations
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, <ReleaseAnimations as TryFrom<AnimationCommands>>::Error>
fn try_from( e: AnimationCommands, ) -> Result<Self, <ReleaseAnimations as TryFrom<AnimationCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for ReleaseAnimations
impl TryFrom<BrowserProtocolCommands> for ReleaseAnimations
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, <ReleaseAnimations as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ReleaseAnimations as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ReleaseAnimations
impl TryFrom<Command> for ReleaseAnimations
impl StructuralPartialEq for ReleaseAnimations
Auto Trait Implementations§
impl Freeze for ReleaseAnimations
impl RefUnwindSafe for ReleaseAnimations
impl Send for ReleaseAnimations
impl Sync for ReleaseAnimations
impl Unpin for ReleaseAnimations
impl UnsafeUnpin for ReleaseAnimations
impl UnwindSafe for ReleaseAnimations
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