Struct chromiumoxide::cdp::browser_protocol::animation::ReleaseAnimationsParams[][src]

pub struct ReleaseAnimationsParams {
    pub animations: Vec<String, Global>,
}

Releases a set of animations to no longer be manipulated. releaseAnimations

Fields

animations: Vec<String, Global>

List of animation ids to seek.

Implementations

impl ReleaseAnimationsParams[src]

impl ReleaseAnimationsParams[src]

impl ReleaseAnimationsParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for ReleaseAnimationsParams[src]

impl Command for ReleaseAnimationsParams[src]

type Response = ReleaseAnimationsReturns

The type of the response this request triggers on the chromium server

impl Debug for ReleaseAnimationsParams[src]

impl<'de> Deserialize<'de> for ReleaseAnimationsParams[src]

impl Method for ReleaseAnimationsParams[src]

impl MethodType for ReleaseAnimationsParams[src]

impl PartialEq<ReleaseAnimationsParams> for ReleaseAnimationsParams[src]

impl Serialize for ReleaseAnimationsParams[src]

impl StructuralPartialEq for ReleaseAnimationsParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,