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

pub struct SetPausedParams {
    pub animations: Vec<String, Global>,
    pub paused: bool,
}

Sets the paused state of a set of animations. setPaused

Fields

animations: Vec<String, Global>

Animations to set the pause state of.

paused: bool

Paused state to set to.

Implementations

impl SetPausedParams[src]

pub fn new(
    animations: Vec<String, Global>,
    paused: impl Into<bool>
) -> SetPausedParams
[src]

impl SetPausedParams[src]

impl SetPausedParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SetPausedParams[src]

impl Command for SetPausedParams[src]

type Response = SetPausedReturns

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

impl Debug for SetPausedParams[src]

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

impl Method for SetPausedParams[src]

impl MethodType for SetPausedParams[src]

impl PartialEq<SetPausedParams> for SetPausedParams[src]

impl Serialize for SetPausedParams[src]

impl StructuralPartialEq for SetPausedParams[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>,