pub struct EventDeviceBoundSessionsAdded {
pub sessions: Vec<DeviceBoundSession>,
}Expand description
Triggered when the initial set of device bound sessions is added. deviceBoundSessionsAdded
Fields§
§sessions: Vec<DeviceBoundSession>The device bound sessions.
Implementations§
Source§impl EventDeviceBoundSessionsAdded
impl EventDeviceBoundSessionsAdded
pub const IDENTIFIER: &'static str = "Network.deviceBoundSessionsAdded"
Trait Implementations§
Source§impl Clone for EventDeviceBoundSessionsAdded
impl Clone for EventDeviceBoundSessionsAdded
Source§fn clone(&self) -> EventDeviceBoundSessionsAdded
fn clone(&self) -> EventDeviceBoundSessionsAdded
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 Default for EventDeviceBoundSessionsAdded
impl Default for EventDeviceBoundSessionsAdded
Source§fn default() -> EventDeviceBoundSessionsAdded
fn default() -> EventDeviceBoundSessionsAdded
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventDeviceBoundSessionsAdded
impl<'de> Deserialize<'de> for EventDeviceBoundSessionsAdded
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventDeviceBoundSessionsAdded, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventDeviceBoundSessionsAdded, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<EventDeviceBoundSessionsAdded> for CdpEvent
impl From<EventDeviceBoundSessionsAdded> for CdpEvent
Source§fn from(el: EventDeviceBoundSessionsAdded) -> CdpEvent
fn from(el: EventDeviceBoundSessionsAdded) -> CdpEvent
Converts to this type from the input type.
Source§impl IntoEventKind for EventDeviceBoundSessionsAdded
impl IntoEventKind for EventDeviceBoundSessionsAdded
Source§fn event_kind() -> EventKindwhere
EventDeviceBoundSessionsAdded: Sized + 'static,
fn event_kind() -> EventKindwhere
EventDeviceBoundSessionsAdded: Sized + 'static,
What kind of event this type is
Source§impl Method for EventDeviceBoundSessionsAdded
impl Method for EventDeviceBoundSessionsAdded
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 EventDeviceBoundSessionsAdded
impl PartialEq for EventDeviceBoundSessionsAdded
Source§fn eq(&self, other: &EventDeviceBoundSessionsAdded) -> bool
fn eq(&self, other: &EventDeviceBoundSessionsAdded) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventDeviceBoundSessionsAdded
impl Serialize for EventDeviceBoundSessionsAdded
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 EventDeviceBoundSessionsAdded
Auto Trait Implementations§
impl Freeze for EventDeviceBoundSessionsAdded
impl RefUnwindSafe for EventDeviceBoundSessionsAdded
impl Send for EventDeviceBoundSessionsAdded
impl Sync for EventDeviceBoundSessionsAdded
impl Unpin for EventDeviceBoundSessionsAdded
impl UnsafeUnpin for EventDeviceBoundSessionsAdded
impl UnwindSafe for EventDeviceBoundSessionsAdded
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