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