pub enum AuditsEvents {
IssueAdded(IssueAdded),
}Variants§
IssueAdded(IssueAdded)
Implementations§
Source§impl AuditsEvents
impl AuditsEvents
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AuditsEvents
impl Clone for AuditsEvents
Source§fn clone(&self) -> AuditsEvents
fn clone(&self) -> AuditsEvents
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 AuditsEvents
impl Debug for AuditsEvents
Source§impl<'de> Deserialize<'de> for AuditsEvents
impl<'de> Deserialize<'de> for AuditsEvents
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<AuditsEvents> for BrowserProtocolEvents
impl From<AuditsEvents> for BrowserProtocolEvents
Source§fn from(v: AuditsEvents) -> Self
fn from(v: AuditsEvents) -> Self
Converts to this type from the input type.
Source§impl From<AuditsEvents> for Event
impl From<AuditsEvents> for Event
Source§fn from(v: AuditsEvents) -> Self
fn from(v: AuditsEvents) -> Self
Converts to this type from the input type.
Source§impl From<IssueAdded> for AuditsEvents
impl From<IssueAdded> for AuditsEvents
Source§fn from(v: IssueAdded) -> Self
fn from(v: IssueAdded) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AuditsEvents
impl PartialEq for AuditsEvents
Source§impl Serialize for AuditsEvents
impl Serialize for AuditsEvents
Source§impl TryFrom<AuditsEvents> for IssueAdded
impl TryFrom<AuditsEvents> for IssueAdded
Source§type Error = AuditsEvents
type Error = AuditsEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: AuditsEvents,
) -> Result<Self, <IssueAdded as TryFrom<AuditsEvents>>::Error>
fn try_from( e: AuditsEvents, ) -> Result<Self, <IssueAdded as TryFrom<AuditsEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for AuditsEvents
impl TryFrom<BrowserProtocolEvents> for AuditsEvents
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, <AuditsEvents as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AuditsEvents as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AuditsEvents
impl TryFrom<Event> for AuditsEvents
impl StructuralPartialEq for AuditsEvents
Auto Trait Implementations§
impl Freeze for AuditsEvents
impl RefUnwindSafe for AuditsEvents
impl Send for AuditsEvents
impl Sync for AuditsEvents
impl Unpin for AuditsEvents
impl UnsafeUnpin for AuditsEvents
impl UnwindSafe for AuditsEvents
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