pub struct EnableDeviceBoundSessions {
pub method: EnableDeviceBoundSessionsMethod,
pub params: EnableDeviceBoundSessionsParams,
}Expand description
Sets up tracking device bound sessions and fetching of initial set of sessions. enableDeviceBoundSessions
Fields§
§method: EnableDeviceBoundSessionsMethod§params: EnableDeviceBoundSessionsParamsImplementations§
Source§impl EnableDeviceBoundSessions
impl EnableDeviceBoundSessions
pub const IDENTIFIER: &'static str = "Network.enableDeviceBoundSessions"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for EnableDeviceBoundSessions
impl Clone for EnableDeviceBoundSessions
Source§fn clone(&self) -> EnableDeviceBoundSessions
fn clone(&self) -> EnableDeviceBoundSessions
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 CommandResult for EnableDeviceBoundSessions
impl CommandResult for EnableDeviceBoundSessions
type Result = EnableDeviceBoundSessionsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for EnableDeviceBoundSessions
impl Debug for EnableDeviceBoundSessions
Source§impl<'de> Deserialize<'de> for EnableDeviceBoundSessions
impl<'de> Deserialize<'de> for EnableDeviceBoundSessions
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<EnableDeviceBoundSessions> for BrowserProtocolCommands
impl From<EnableDeviceBoundSessions> for BrowserProtocolCommands
Source§fn from(v: EnableDeviceBoundSessions) -> Self
fn from(v: EnableDeviceBoundSessions) -> Self
Converts to this type from the input type.
Source§impl From<EnableDeviceBoundSessions> for Command
impl From<EnableDeviceBoundSessions> for Command
Source§fn from(v: EnableDeviceBoundSessions) -> Self
fn from(v: EnableDeviceBoundSessions) -> Self
Converts to this type from the input type.
Source§impl From<EnableDeviceBoundSessions> for NetworkCommands
impl From<EnableDeviceBoundSessions> for NetworkCommands
Source§fn from(v: EnableDeviceBoundSessions) -> Self
fn from(v: EnableDeviceBoundSessions) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for EnableDeviceBoundSessions
impl TryFrom<BrowserProtocolCommands> for EnableDeviceBoundSessions
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <EnableDeviceBoundSessions as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <EnableDeviceBoundSessions as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for EnableDeviceBoundSessions
impl TryFrom<Command> for EnableDeviceBoundSessions
Source§impl TryFrom<NetworkCommands> for EnableDeviceBoundSessions
impl TryFrom<NetworkCommands> for EnableDeviceBoundSessions
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <EnableDeviceBoundSessions as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <EnableDeviceBoundSessions as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for EnableDeviceBoundSessions
Auto Trait Implementations§
impl Freeze for EnableDeviceBoundSessions
impl RefUnwindSafe for EnableDeviceBoundSessions
impl Send for EnableDeviceBoundSessions
impl Sync for EnableDeviceBoundSessions
impl Unpin for EnableDeviceBoundSessions
impl UnsafeUnpin for EnableDeviceBoundSessions
impl UnwindSafe for EnableDeviceBoundSessions
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