Struct chromiumoxide::cdp::browser_protocol::page::SetWebLifecycleStateParams    
source · pub struct SetWebLifecycleStateParams {
    pub state: SetWebLifecycleStateState,
}Expand description
Tries to update the web lifecycle state of the page. It will transition the page to the given state according to: https://github.com/WICG/web-lifecycle/ setWebLifecycleState
Fields§
§state: SetWebLifecycleStateStateTarget lifecycle state
Implementations§
source§impl SetWebLifecycleStateParams
 
impl SetWebLifecycleStateParams
pub fn new( state: impl Into<SetWebLifecycleStateState> ) -> SetWebLifecycleStateParams
source§impl SetWebLifecycleStateParams
 
impl SetWebLifecycleStateParams
pub const IDENTIFIER: &'static str = "Page.setWebLifecycleState"
Trait Implementations§
source§impl Clone for SetWebLifecycleStateParams
 
impl Clone for SetWebLifecycleStateParams
source§fn clone(&self) -> SetWebLifecycleStateParams
 
fn clone(&self) -> SetWebLifecycleStateParams
Returns a copy 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 SetWebLifecycleStateParams
 
impl Command for SetWebLifecycleStateParams
§type Response = SetWebLifecycleStateReturns
 
type Response = SetWebLifecycleStateReturns
The type of the response this request triggers on the chromium server
source§impl Debug for SetWebLifecycleStateParams
 
impl Debug for SetWebLifecycleStateParams
source§impl<'de> Deserialize<'de> for SetWebLifecycleStateParams
 
impl<'de> Deserialize<'de> for SetWebLifecycleStateParams
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<SetWebLifecycleStateParams, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<SetWebLifecycleStateParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for SetWebLifecycleStateParams
 
impl Method for SetWebLifecycleStateParams
source§fn identifier(&self) -> Cow<'static, str>
 
fn identifier(&self) -> Cow<'static, str>
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 PartialEq for SetWebLifecycleStateParams
 
impl PartialEq for SetWebLifecycleStateParams
source§fn eq(&self, other: &SetWebLifecycleStateParams) -> bool
 
fn eq(&self, other: &SetWebLifecycleStateParams) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for SetWebLifecycleStateParams
 
impl Serialize for SetWebLifecycleStateParams
source§fn 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 SetWebLifecycleStateParams
Auto Trait Implementations§
impl RefUnwindSafe for SetWebLifecycleStateParams
impl Send for SetWebLifecycleStateParams
impl Sync for SetWebLifecycleStateParams
impl Unpin for SetWebLifecycleStateParams
impl UnwindSafe for SetWebLifecycleStateParams
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