pub struct PageSetLifecycleEventsEnabledParams {
pub enabled: bool,
}Expand description
Typed params for Page.setLifecycleEventsEnabled.
Fields§
§enabled: boolWhether lifecycle events should be emitted.
Trait Implementations§
Source§impl Clone for PageSetLifecycleEventsEnabledParams
impl Clone for PageSetLifecycleEventsEnabledParams
Source§fn clone(&self) -> PageSetLifecycleEventsEnabledParams
fn clone(&self) -> PageSetLifecycleEventsEnabledParams
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 PageSetLifecycleEventsEnabledParams
impl Command for PageSetLifecycleEventsEnabledParams
Source§type Params = PageSetLifecycleEventsEnabledParams
type Params = PageSetLifecycleEventsEnabledParams
Command parameters.
Source§impl<'de> Deserialize<'de> for PageSetLifecycleEventsEnabledParams
impl<'de> Deserialize<'de> for PageSetLifecycleEventsEnabledParams
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 PartialEq for PageSetLifecycleEventsEnabledParams
impl PartialEq for PageSetLifecycleEventsEnabledParams
Source§fn eq(&self, other: &PageSetLifecycleEventsEnabledParams) -> bool
fn eq(&self, other: &PageSetLifecycleEventsEnabledParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PageSetLifecycleEventsEnabledParams
impl StructuralPartialEq for PageSetLifecycleEventsEnabledParams
Auto Trait Implementations§
impl Freeze for PageSetLifecycleEventsEnabledParams
impl RefUnwindSafe for PageSetLifecycleEventsEnabledParams
impl Send for PageSetLifecycleEventsEnabledParams
impl Sync for PageSetLifecycleEventsEnabledParams
impl Unpin for PageSetLifecycleEventsEnabledParams
impl UnsafeUnpin for PageSetLifecycleEventsEnabledParams
impl UnwindSafe for PageSetLifecycleEventsEnabledParams
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