pub struct SetPausedParams {
pub animations: Vec<String>,
pub paused: bool,
}Expand description
Sets the paused state of a set of animations. setPaused
Fields§
§animations: Vec<String>Animations to set the pause state of.
paused: boolPaused state to set to.
Implementations§
Source§impl SetPausedParams
impl SetPausedParams
pub fn builder() -> SetPausedParamsBuilder
Source§impl SetPausedParams
impl SetPausedParams
pub const IDENTIFIER: &'static str = "Animation.setPaused"
Trait Implementations§
Source§impl Clone for SetPausedParams
impl Clone for SetPausedParams
Source§fn clone(&self) -> SetPausedParams
fn clone(&self) -> SetPausedParams
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 Command for SetPausedParams
impl Command for SetPausedParams
Source§impl Debug for SetPausedParams
impl Debug for SetPausedParams
Source§impl<'de> Deserialize<'de> for SetPausedParams
impl<'de> Deserialize<'de> for SetPausedParams
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 Method for SetPausedParams
impl Method for SetPausedParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for SetPausedParams
impl MethodType for SetPausedParams
Source§impl PartialEq for SetPausedParams
impl PartialEq for SetPausedParams
Source§impl Serialize for SetPausedParams
impl Serialize for SetPausedParams
impl StructuralPartialEq for SetPausedParams
Auto Trait Implementations§
impl Freeze for SetPausedParams
impl RefUnwindSafe for SetPausedParams
impl Send for SetPausedParams
impl Sync for SetPausedParams
impl Unpin for SetPausedParams
impl UnwindSafe for SetPausedParams
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