pub enum SessionFsErrorCode {
ENOENT,
UNKNOWN,
Unknown,
}Expand description
Error classification
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
ENOENT
The requested path does not exist.
UNKNOWN
The filesystem operation failed for an unspecified reason.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for SessionFsErrorCode
impl Clone for SessionFsErrorCode
Source§fn clone(&self) -> SessionFsErrorCode
fn clone(&self) -> SessionFsErrorCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SessionFsErrorCode
impl Debug for SessionFsErrorCode
Source§impl Default for SessionFsErrorCode
impl Default for SessionFsErrorCode
Source§fn default() -> SessionFsErrorCode
fn default() -> SessionFsErrorCode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionFsErrorCode
impl<'de> Deserialize<'de> for SessionFsErrorCode
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
impl Eq for SessionFsErrorCode
Source§impl PartialEq for SessionFsErrorCode
impl PartialEq for SessionFsErrorCode
Source§fn eq(&self, other: &SessionFsErrorCode) -> bool
fn eq(&self, other: &SessionFsErrorCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionFsErrorCode
impl Serialize for SessionFsErrorCode
impl StructuralPartialEq for SessionFsErrorCode
Auto Trait Implementations§
impl Freeze for SessionFsErrorCode
impl RefUnwindSafe for SessionFsErrorCode
impl Send for SessionFsErrorCode
impl Sync for SessionFsErrorCode
impl Unpin for SessionFsErrorCode
impl UnsafeUnpin for SessionFsErrorCode
impl UnwindSafe for SessionFsErrorCode
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