pub enum LogEvents {
EntryAdded(EntryAdded),
}Variants§
EntryAdded(EntryAdded)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogEvents
impl<'de> Deserialize<'de> for LogEvents
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<EntryAdded> for LogEvents
impl From<EntryAdded> for LogEvents
Source§fn from(v: EntryAdded) -> Self
fn from(v: EntryAdded) -> Self
Converts to this type from the input type.
Source§impl From<LogEvents> for BrowserProtocolEvents
impl From<LogEvents> for BrowserProtocolEvents
Source§impl TryFrom<BrowserProtocolEvents> for LogEvents
impl TryFrom<BrowserProtocolEvents> for LogEvents
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, <LogEvents as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <LogEvents as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<LogEvents> for EntryAdded
impl TryFrom<LogEvents> for EntryAdded
impl StructuralPartialEq for LogEvents
Auto Trait Implementations§
impl Freeze for LogEvents
impl RefUnwindSafe for LogEvents
impl Send for LogEvents
impl Sync for LogEvents
impl Unpin for LogEvents
impl UnsafeUnpin for LogEvents
impl UnwindSafe for LogEvents
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