pub enum FileNotFoundHandling {
NoData,
Error,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for FileNotFoundHandling
impl Clone for FileNotFoundHandling
Source§fn clone(&self) -> FileNotFoundHandling
fn clone(&self) -> FileNotFoundHandling
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 FileNotFoundHandling
impl Debug for FileNotFoundHandling
Source§impl Default for FileNotFoundHandling
impl Default for FileNotFoundHandling
Source§fn default() -> FileNotFoundHandling
fn default() -> FileNotFoundHandling
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileNotFoundHandling
impl<'de> Deserialize<'de> for FileNotFoundHandling
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 Display for FileNotFoundHandling
impl Display for FileNotFoundHandling
Source§impl Hash for FileNotFoundHandling
impl Hash for FileNotFoundHandling
Source§impl Ord for FileNotFoundHandling
impl Ord for FileNotFoundHandling
Source§fn cmp(&self, other: &FileNotFoundHandling) -> Ordering
fn cmp(&self, other: &FileNotFoundHandling) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FileNotFoundHandling
impl PartialEq for FileNotFoundHandling
Source§fn eq(&self, other: &FileNotFoundHandling) -> bool
fn eq(&self, other: &FileNotFoundHandling) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FileNotFoundHandling
impl PartialOrd for FileNotFoundHandling
Source§impl Serialize for FileNotFoundHandling
impl Serialize for FileNotFoundHandling
impl Copy for FileNotFoundHandling
impl Eq for FileNotFoundHandling
impl StructuralPartialEq for FileNotFoundHandling
Auto Trait Implementations§
impl Freeze for FileNotFoundHandling
impl RefUnwindSafe for FileNotFoundHandling
impl Send for FileNotFoundHandling
impl Sync for FileNotFoundHandling
impl Unpin for FileNotFoundHandling
impl UnsafeUnpin for FileNotFoundHandling
impl UnwindSafe for FileNotFoundHandling
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