pub enum FileSystemCommands {
GetDirectory(GetDirectory),
}Variants§
GetDirectory(GetDirectory)
Implementations§
Source§impl FileSystemCommands
impl FileSystemCommands
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for FileSystemCommands
impl Clone for FileSystemCommands
Source§fn clone(&self) -> FileSystemCommands
fn clone(&self) -> FileSystemCommands
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 FileSystemCommands
impl Debug for FileSystemCommands
Source§impl<'de> Deserialize<'de> for FileSystemCommands
impl<'de> Deserialize<'de> for FileSystemCommands
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<FileSystemCommands> for BrowserProtocolCommands
impl From<FileSystemCommands> for BrowserProtocolCommands
Source§fn from(v: FileSystemCommands) -> Self
fn from(v: FileSystemCommands) -> Self
Converts to this type from the input type.
Source§impl From<FileSystemCommands> for Command
impl From<FileSystemCommands> for Command
Source§fn from(v: FileSystemCommands) -> Self
fn from(v: FileSystemCommands) -> 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 FileSystemCommands
impl PartialEq for FileSystemCommands
Source§impl Serialize for FileSystemCommands
impl Serialize for FileSystemCommands
Source§impl TryFrom<BrowserProtocolCommands> for FileSystemCommands
impl TryFrom<BrowserProtocolCommands> for FileSystemCommands
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, <FileSystemCommands as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <FileSystemCommands as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for FileSystemCommands
impl TryFrom<Command> for FileSystemCommands
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 FileSystemCommands
Auto Trait Implementations§
impl Freeze for FileSystemCommands
impl RefUnwindSafe for FileSystemCommands
impl Send for FileSystemCommands
impl Sync for FileSystemCommands
impl Unpin for FileSystemCommands
impl UnsafeUnpin for FileSystemCommands
impl UnwindSafe for FileSystemCommands
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