pub struct GetDirectory {
pub method: GetDirectoryMethod,
pub params: GetDirectoryParams,
}Fields§
§method: GetDirectoryMethod§params: GetDirectoryParamsImplementations§
Source§impl GetDirectory
impl GetDirectory
pub fn builder() -> GetDirectoryBuilder
Source§impl GetDirectory
impl GetDirectory
pub const IDENTIFIER: &'static str = "FileSystem.getDirectory"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetDirectory
impl Clone for GetDirectory
Source§fn clone(&self) -> GetDirectory
fn clone(&self) -> GetDirectory
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 GetDirectory
impl CommandResult for GetDirectory
type Result = GetDirectoryResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetDirectory
impl Debug for GetDirectory
Source§impl<'de> Deserialize<'de> for GetDirectory
impl<'de> Deserialize<'de> for GetDirectory
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<GetDirectory> for BrowserProtocolCommands
impl From<GetDirectory> for BrowserProtocolCommands
Source§fn from(v: GetDirectory) -> Self
fn from(v: GetDirectory) -> Self
Converts to this type from the input type.
Source§impl From<GetDirectory> for Command
impl From<GetDirectory> for Command
Source§fn from(v: GetDirectory) -> Self
fn from(v: GetDirectory) -> Self
Converts to this type from the input type.
Source§impl From<GetDirectory> for FileSystemCommands
impl From<GetDirectory> for FileSystemCommands
Source§fn from(v: GetDirectory) -> Self
fn from(v: GetDirectory) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetDirectory
impl PartialEq for GetDirectory
Source§impl Serialize for GetDirectory
impl Serialize for GetDirectory
Source§impl TryFrom<BrowserProtocolCommands> for GetDirectory
impl TryFrom<BrowserProtocolCommands> for GetDirectory
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, <GetDirectory as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetDirectory as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetDirectory
impl TryFrom<Command> for GetDirectory
Source§impl TryFrom<FileSystemCommands> for GetDirectory
impl TryFrom<FileSystemCommands> for GetDirectory
Source§type Error = FileSystemCommands
type Error = FileSystemCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: FileSystemCommands,
) -> Result<Self, <GetDirectory as TryFrom<FileSystemCommands>>::Error>
fn try_from( e: FileSystemCommands, ) -> Result<Self, <GetDirectory as TryFrom<FileSystemCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetDirectory
Auto Trait Implementations§
impl Freeze for GetDirectory
impl RefUnwindSafe for GetDirectory
impl Send for GetDirectory
impl Sync for GetDirectory
impl Unpin for GetDirectory
impl UnsafeUnpin for GetDirectory
impl UnwindSafe for GetDirectory
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