pub struct PolicyUpdated {
pub method: PolicyUpdatedMethod,
pub params: PolicyUpdatedParams,
}Expand description
Fired once security policy has been updated. policyUpdated
Fields§
§method: PolicyUpdatedMethod§params: PolicyUpdatedParamsImplementations§
Source§impl PolicyUpdated
impl PolicyUpdated
pub const IDENTIFIER: &'static str = "Network.policyUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PolicyUpdated
impl Clone for PolicyUpdated
Source§fn clone(&self) -> PolicyUpdated
fn clone(&self) -> PolicyUpdated
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 Debug for PolicyUpdated
impl Debug for PolicyUpdated
Source§impl<'de> Deserialize<'de> for PolicyUpdated
impl<'de> Deserialize<'de> for PolicyUpdated
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<PolicyUpdated> for BrowserProtocolEvents
impl From<PolicyUpdated> for BrowserProtocolEvents
Source§fn from(v: PolicyUpdated) -> Self
fn from(v: PolicyUpdated) -> Self
Converts to this type from the input type.
Source§impl From<PolicyUpdated> for Event
impl From<PolicyUpdated> for Event
Source§fn from(v: PolicyUpdated) -> Self
fn from(v: PolicyUpdated) -> Self
Converts to this type from the input type.
Source§impl From<PolicyUpdated> for NetworkEvents
impl From<PolicyUpdated> for NetworkEvents
Source§fn from(v: PolicyUpdated) -> Self
fn from(v: PolicyUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PolicyUpdated
impl PartialEq for PolicyUpdated
Source§impl Serialize for PolicyUpdated
impl Serialize for PolicyUpdated
Source§impl TryFrom<BrowserProtocolEvents> for PolicyUpdated
impl TryFrom<BrowserProtocolEvents> for PolicyUpdated
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, <PolicyUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <PolicyUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for PolicyUpdated
impl TryFrom<Event> for PolicyUpdated
Source§impl TryFrom<NetworkEvents> for PolicyUpdated
impl TryFrom<NetworkEvents> for PolicyUpdated
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, <PolicyUpdated as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <PolicyUpdated as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for PolicyUpdated
Auto Trait Implementations§
impl Freeze for PolicyUpdated
impl RefUnwindSafe for PolicyUpdated
impl Send for PolicyUpdated
impl Sync for PolicyUpdated
impl Unpin for PolicyUpdated
impl UnsafeUnpin for PolicyUpdated
impl UnwindSafe for PolicyUpdated
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