Struct chromiumoxide::cdp::browser_protocol::animation::SetPausedParams
source · [−]Expand description
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
sourceimpl SetPausedParams
impl SetPausedParams
pub fn builder() -> SetPausedParamsBuilder
sourceimpl SetPausedParams
impl SetPausedParams
pub const IDENTIFIER: &'static str = "Animation.setPaused"
Trait Implementations
sourceimpl Clone for SetPausedParams
impl Clone for SetPausedParams
sourcefn clone(&self) -> SetPausedParams
fn clone(&self) -> SetPausedParams
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Command for SetPausedParams
impl Command for SetPausedParams
type Response = SetPausedReturns
type Response = SetPausedReturns
The type of the response this request triggers on the chromium server
sourceimpl Debug for SetPausedParams
impl Debug for SetPausedParams
sourceimpl<'de> Deserialize<'de> for SetPausedParams
impl<'de> Deserialize<'de> for SetPausedParams
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<SetPausedParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<SetPausedParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Method for SetPausedParams
impl Method for SetPausedParams
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
sourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
sourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
sourceimpl MethodType for SetPausedParams
impl MethodType for SetPausedParams
sourceimpl PartialEq<SetPausedParams> for SetPausedParams
impl PartialEq<SetPausedParams> for SetPausedParams
sourcefn eq(&self, other: &SetPausedParams) -> bool
fn eq(&self, other: &SetPausedParams) -> bool
sourceimpl Serialize for SetPausedParams
impl Serialize for SetPausedParams
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SetPausedParams
Auto Trait Implementations
impl RefUnwindSafe for SetPausedParams
impl Send for SetPausedParams
impl Sync for SetPausedParams
impl Unpin for SetPausedParams
impl UnwindSafe for SetPausedParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more