pub struct FsSinglePathRequest {
pub path: String,
}
Expand description
Methods: fs_read
/fs_write
/fs_rm
/fs_mkdirp
/fs_stat
- fs_read: reads into a stream returned from the method,
- fs_write: writes from a stream passed to the method.
- fs_rm: recursively removes the file
- fs_mkdirp: recursively creates the directory
- fs_readdir: reads directory contents
- fs_stat: stats the given path
- fs_connect: connect to the given unix or named pipe socket, streaming data in and out from the method’s stream.
Fields§
§path: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FsSinglePathRequest
impl<'de> Deserialize<'de> for FsSinglePathRequest
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
Auto Trait Implementations§
impl Freeze for FsSinglePathRequest
impl RefUnwindSafe for FsSinglePathRequest
impl Send for FsSinglePathRequest
impl Sync for FsSinglePathRequest
impl Unpin for FsSinglePathRequest
impl UnwindSafe for FsSinglePathRequest
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