pub struct GetSecurityIsolationStatus {
pub method: GetSecurityIsolationStatusMethod,
pub params: GetSecurityIsolationStatusParams,
}Expand description
Returns information about the COEP/COOP isolation status. getSecurityIsolationStatus
Fields§
§method: GetSecurityIsolationStatusMethod§params: GetSecurityIsolationStatusParamsImplementations§
Source§impl GetSecurityIsolationStatus
impl GetSecurityIsolationStatus
pub const IDENTIFIER: &'static str = "Network.getSecurityIsolationStatus"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetSecurityIsolationStatus
impl Clone for GetSecurityIsolationStatus
Source§fn clone(&self) -> GetSecurityIsolationStatus
fn clone(&self) -> GetSecurityIsolationStatus
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 GetSecurityIsolationStatus
impl CommandResult for GetSecurityIsolationStatus
type Result = GetSecurityIsolationStatusResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetSecurityIsolationStatus
impl Debug for GetSecurityIsolationStatus
Source§impl<'de> Deserialize<'de> for GetSecurityIsolationStatus
impl<'de> Deserialize<'de> for GetSecurityIsolationStatus
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<GetSecurityIsolationStatus> for BrowserProtocolCommands
impl From<GetSecurityIsolationStatus> for BrowserProtocolCommands
Source§fn from(v: GetSecurityIsolationStatus) -> Self
fn from(v: GetSecurityIsolationStatus) -> Self
Converts to this type from the input type.
Source§impl From<GetSecurityIsolationStatus> for Command
impl From<GetSecurityIsolationStatus> for Command
Source§fn from(v: GetSecurityIsolationStatus) -> Self
fn from(v: GetSecurityIsolationStatus) -> Self
Converts to this type from the input type.
Source§impl From<GetSecurityIsolationStatus> for NetworkCommands
impl From<GetSecurityIsolationStatus> for NetworkCommands
Source§fn from(v: GetSecurityIsolationStatus) -> Self
fn from(v: GetSecurityIsolationStatus) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for GetSecurityIsolationStatus
impl TryFrom<BrowserProtocolCommands> for GetSecurityIsolationStatus
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, <GetSecurityIsolationStatus as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetSecurityIsolationStatus as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetSecurityIsolationStatus
impl TryFrom<Command> for GetSecurityIsolationStatus
Source§impl TryFrom<NetworkCommands> for GetSecurityIsolationStatus
impl TryFrom<NetworkCommands> for GetSecurityIsolationStatus
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, <GetSecurityIsolationStatus as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <GetSecurityIsolationStatus as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetSecurityIsolationStatus
Auto Trait Implementations§
impl Freeze for GetSecurityIsolationStatus
impl RefUnwindSafe for GetSecurityIsolationStatus
impl Send for GetSecurityIsolationStatus
impl Sync for GetSecurityIsolationStatus
impl Unpin for GetSecurityIsolationStatus
impl UnsafeUnpin for GetSecurityIsolationStatus
impl UnwindSafe for GetSecurityIsolationStatus
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