pub struct GetExtensions {
pub method: GetExtensionsMethod,
pub params: GetExtensionsParams,
}Expand description
Gets a list of all unpacked extensions. Available if the client is connected using the –remote-debugging-pipe flag and the –enable-unsafe-extension-debugging flag is set. getExtensions
Fields§
§method: GetExtensionsMethod§params: GetExtensionsParamsImplementations§
Source§impl GetExtensions
impl GetExtensions
pub fn builder() -> GetExtensionsBuilder
Source§impl GetExtensions
impl GetExtensions
pub const IDENTIFIER: &'static str = "Extensions.getExtensions"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetExtensions
impl Clone for GetExtensions
Source§fn clone(&self) -> GetExtensions
fn clone(&self) -> GetExtensions
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 GetExtensions
impl CommandResult for GetExtensions
type Result = GetExtensionsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetExtensions
impl Debug for GetExtensions
Source§impl<'de> Deserialize<'de> for GetExtensions
impl<'de> Deserialize<'de> for GetExtensions
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<GetExtensions> for BrowserProtocolCommands
impl From<GetExtensions> for BrowserProtocolCommands
Source§fn from(v: GetExtensions) -> Self
fn from(v: GetExtensions) -> Self
Converts to this type from the input type.
Source§impl From<GetExtensions> for Command
impl From<GetExtensions> for Command
Source§fn from(v: GetExtensions) -> Self
fn from(v: GetExtensions) -> Self
Converts to this type from the input type.
Source§impl From<GetExtensions> for ExtensionsCommands
impl From<GetExtensions> for ExtensionsCommands
Source§fn from(v: GetExtensions) -> Self
fn from(v: GetExtensions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetExtensions
impl PartialEq for GetExtensions
Source§impl Serialize for GetExtensions
impl Serialize for GetExtensions
Source§impl TryFrom<BrowserProtocolCommands> for GetExtensions
impl TryFrom<BrowserProtocolCommands> for GetExtensions
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, <GetExtensions as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetExtensions as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetExtensions
impl TryFrom<Command> for GetExtensions
Source§impl TryFrom<ExtensionsCommands> for GetExtensions
impl TryFrom<ExtensionsCommands> for GetExtensions
Source§type Error = ExtensionsCommands
type Error = ExtensionsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: ExtensionsCommands,
) -> Result<Self, <GetExtensions as TryFrom<ExtensionsCommands>>::Error>
fn try_from( e: ExtensionsCommands, ) -> Result<Self, <GetExtensions as TryFrom<ExtensionsCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetExtensions
Auto Trait Implementations§
impl Freeze for GetExtensions
impl RefUnwindSafe for GetExtensions
impl Send for GetExtensions
impl Sync for GetExtensions
impl Unpin for GetExtensions
impl UnsafeUnpin for GetExtensions
impl UnwindSafe for GetExtensions
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