pub struct FsStatError {
pub path: String,
pub code: &'static str,
pub message: String,
}Expand description
Filesystem stat error payload (used inside JsonRpcError.data).
Fields§
§path: String§code: &'static str§message: StringTrait Implementations§
Source§impl Clone for FsStatError
impl Clone for FsStatError
Source§fn clone(&self) -> FsStatError
fn clone(&self) -> FsStatError
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 FsStatError
impl Debug for FsStatError
Source§impl Deserialize<'static> for FsStatError
impl Deserialize<'static> for FsStatError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FsStatError
impl RefUnwindSafe for FsStatError
impl Send for FsStatError
impl Sync for FsStatError
impl Unpin for FsStatError
impl UnsafeUnpin for FsStatError
impl UnwindSafe for FsStatError
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