pub struct Unbind {
pub method: UnbindMethod,
pub params: UnbindParams,
}Expand description
Request browser port unbinding. unbind
Fields§
§method: UnbindMethod§params: UnbindParamsImplementations§
Source§impl Unbind
impl Unbind
pub const IDENTIFIER: &'static str = "Tethering.unbind"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for Unbind
impl CommandResult for Unbind
type Result = UnbindResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for Unbind
impl<'de> Deserialize<'de> for Unbind
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<Unbind> for BrowserProtocolCommands
impl From<Unbind> for BrowserProtocolCommands
Source§impl From<Unbind> for TetheringCommands
impl From<Unbind> for TetheringCommands
Source§impl TryFrom<BrowserProtocolCommands> for Unbind
impl TryFrom<BrowserProtocolCommands> for Unbind
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <Unbind as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <Unbind as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<TetheringCommands> for Unbind
impl TryFrom<TetheringCommands> for Unbind
Source§type Error = TetheringCommands
type Error = TetheringCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: TetheringCommands,
) -> Result<Self, <Unbind as TryFrom<TetheringCommands>>::Error>
fn try_from( e: TetheringCommands, ) -> Result<Self, <Unbind as TryFrom<TetheringCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for Unbind
Auto Trait Implementations§
impl Freeze for Unbind
impl RefUnwindSafe for Unbind
impl Send for Unbind
impl Sync for Unbind
impl Unpin for Unbind
impl UnsafeUnpin for Unbind
impl UnwindSafe for Unbind
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