pub struct SetDockTile {
pub method: SetDockTileMethod,
pub params: SetDockTileParams,
}Expand description
Set dock tile details, platform-specific. setDockTile
Fields§
§method: SetDockTileMethod§params: SetDockTileParamsImplementations§
Source§impl SetDockTile
impl SetDockTile
pub fn builder() -> SetDockTileBuilder
Source§impl SetDockTile
impl SetDockTile
pub const IDENTIFIER: &'static str = "Browser.setDockTile"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetDockTile
impl Clone for SetDockTile
Source§fn clone(&self) -> SetDockTile
fn clone(&self) -> SetDockTile
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 CommandResult for SetDockTile
impl CommandResult for SetDockTile
type Result = SetDockTileResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetDockTile
impl Debug for SetDockTile
Source§impl<'de> Deserialize<'de> for SetDockTile
impl<'de> Deserialize<'de> for SetDockTile
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<SetDockTile> for BrowserCommands
impl From<SetDockTile> for BrowserCommands
Source§fn from(v: SetDockTile) -> Self
fn from(v: SetDockTile) -> Self
Converts to this type from the input type.
Source§impl From<SetDockTile> for BrowserProtocolCommands
impl From<SetDockTile> for BrowserProtocolCommands
Source§fn from(v: SetDockTile) -> Self
fn from(v: SetDockTile) -> Self
Converts to this type from the input type.
Source§impl From<SetDockTile> for Command
impl From<SetDockTile> for Command
Source§fn from(v: SetDockTile) -> Self
fn from(v: SetDockTile) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetDockTile
impl PartialEq for SetDockTile
Source§impl Serialize for SetDockTile
impl Serialize for SetDockTile
Source§impl TryFrom<BrowserCommands> for SetDockTile
impl TryFrom<BrowserCommands> for SetDockTile
Source§type Error = BrowserCommands
type Error = BrowserCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserCommands,
) -> Result<Self, <SetDockTile as TryFrom<BrowserCommands>>::Error>
fn try_from( e: BrowserCommands, ) -> Result<Self, <SetDockTile as TryFrom<BrowserCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for SetDockTile
impl TryFrom<BrowserProtocolCommands> for SetDockTile
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, <SetDockTile as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetDockTile as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetDockTile
impl TryFrom<Command> for SetDockTile
impl StructuralPartialEq for SetDockTile
Auto Trait Implementations§
impl Freeze for SetDockTile
impl RefUnwindSafe for SetDockTile
impl Send for SetDockTile
impl Sync for SetDockTile
impl Unpin for SetDockTile
impl UnsafeUnpin for SetDockTile
impl UnwindSafe for SetDockTile
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