pub struct RuleSetUpdated {
pub method: RuleSetUpdatedMethod,
pub params: RuleSetUpdatedParams,
}Expand description
Upsert. Currently, it is only emitted when a rule set added. ruleSetUpdated
Fields§
§method: RuleSetUpdatedMethod§params: RuleSetUpdatedParamsImplementations§
Source§impl RuleSetUpdated
impl RuleSetUpdated
pub const IDENTIFIER: &'static str = "Preload.ruleSetUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RuleSetUpdated
impl Clone for RuleSetUpdated
Source§fn clone(&self) -> RuleSetUpdated
fn clone(&self) -> RuleSetUpdated
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 RuleSetUpdated
impl Debug for RuleSetUpdated
Source§impl<'de> Deserialize<'de> for RuleSetUpdated
impl<'de> Deserialize<'de> for RuleSetUpdated
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<RuleSetUpdated> for BrowserProtocolEvents
impl From<RuleSetUpdated> for BrowserProtocolEvents
Source§fn from(v: RuleSetUpdated) -> Self
fn from(v: RuleSetUpdated) -> Self
Converts to this type from the input type.
Source§impl From<RuleSetUpdated> for Event
impl From<RuleSetUpdated> for Event
Source§fn from(v: RuleSetUpdated) -> Self
fn from(v: RuleSetUpdated) -> Self
Converts to this type from the input type.
Source§impl From<RuleSetUpdated> for PreloadEvents
impl From<RuleSetUpdated> for PreloadEvents
Source§fn from(v: RuleSetUpdated) -> Self
fn from(v: RuleSetUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RuleSetUpdated
impl PartialEq for RuleSetUpdated
Source§impl Serialize for RuleSetUpdated
impl Serialize for RuleSetUpdated
Source§impl TryFrom<BrowserProtocolEvents> for RuleSetUpdated
impl TryFrom<BrowserProtocolEvents> for RuleSetUpdated
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, <RuleSetUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <RuleSetUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for RuleSetUpdated
impl TryFrom<Event> for RuleSetUpdated
Source§impl TryFrom<PreloadEvents> for RuleSetUpdated
impl TryFrom<PreloadEvents> for RuleSetUpdated
Source§type Error = PreloadEvents
type Error = PreloadEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PreloadEvents,
) -> Result<Self, <RuleSetUpdated as TryFrom<PreloadEvents>>::Error>
fn try_from( e: PreloadEvents, ) -> Result<Self, <RuleSetUpdated as TryFrom<PreloadEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for RuleSetUpdated
Auto Trait Implementations§
impl Freeze for RuleSetUpdated
impl RefUnwindSafe for RuleSetUpdated
impl Send for RuleSetUpdated
impl Sync for RuleSetUpdated
impl Unpin for RuleSetUpdated
impl UnsafeUnpin for RuleSetUpdated
impl UnwindSafe for RuleSetUpdated
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