pub struct DeviceBoundSessionEventOccurred {
pub method: DeviceBoundSessionEventOccurredMethod,
pub params: DeviceBoundSessionEventOccurredParams,
}Expand description
Triggered when a device bound session event occurs. deviceBoundSessionEventOccurred
Fields§
§method: DeviceBoundSessionEventOccurredMethod§params: DeviceBoundSessionEventOccurredParamsImplementations§
Source§impl DeviceBoundSessionEventOccurred
impl DeviceBoundSessionEventOccurred
pub const IDENTIFIER: &'static str = "Network.deviceBoundSessionEventOccurred"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DeviceBoundSessionEventOccurred
impl Clone for DeviceBoundSessionEventOccurred
Source§fn clone(&self) -> DeviceBoundSessionEventOccurred
fn clone(&self) -> DeviceBoundSessionEventOccurred
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<'de> Deserialize<'de> for DeviceBoundSessionEventOccurred
impl<'de> Deserialize<'de> for DeviceBoundSessionEventOccurred
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 From<DeviceBoundSessionEventOccurred> for BrowserProtocolEvents
impl From<DeviceBoundSessionEventOccurred> for BrowserProtocolEvents
Source§fn from(v: DeviceBoundSessionEventOccurred) -> Self
fn from(v: DeviceBoundSessionEventOccurred) -> Self
Converts to this type from the input type.
Source§impl From<DeviceBoundSessionEventOccurred> for Event
impl From<DeviceBoundSessionEventOccurred> for Event
Source§fn from(v: DeviceBoundSessionEventOccurred) -> Self
fn from(v: DeviceBoundSessionEventOccurred) -> Self
Converts to this type from the input type.
Source§impl From<DeviceBoundSessionEventOccurred> for NetworkEvents
impl From<DeviceBoundSessionEventOccurred> for NetworkEvents
Source§fn from(v: DeviceBoundSessionEventOccurred) -> Self
fn from(v: DeviceBoundSessionEventOccurred) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeviceBoundSessionEventOccurred
impl PartialEq for DeviceBoundSessionEventOccurred
Source§fn eq(&self, other: &DeviceBoundSessionEventOccurred) -> bool
fn eq(&self, other: &DeviceBoundSessionEventOccurred) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolEvents> for DeviceBoundSessionEventOccurred
impl TryFrom<BrowserProtocolEvents> for DeviceBoundSessionEventOccurred
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <DeviceBoundSessionEventOccurred as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DeviceBoundSessionEventOccurred as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<NetworkEvents> for DeviceBoundSessionEventOccurred
impl TryFrom<NetworkEvents> for DeviceBoundSessionEventOccurred
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <DeviceBoundSessionEventOccurred as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <DeviceBoundSessionEventOccurred as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for DeviceBoundSessionEventOccurred
Auto Trait Implementations§
impl Freeze for DeviceBoundSessionEventOccurred
impl RefUnwindSafe for DeviceBoundSessionEventOccurred
impl Send for DeviceBoundSessionEventOccurred
impl Sync for DeviceBoundSessionEventOccurred
impl Unpin for DeviceBoundSessionEventOccurred
impl UnsafeUnpin for DeviceBoundSessionEventOccurred
impl UnwindSafe for DeviceBoundSessionEventOccurred
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