pub enum PersistentStorageOutput {
FileData(String),
SaveOk,
AppendOk,
Error,
LoadErrorFileDoesntExist,
}Variants§
Trait Implementations§
Source§impl Clone for PersistentStorageOutput
impl Clone for PersistentStorageOutput
Source§fn clone(&self) -> PersistentStorageOutput
fn clone(&self) -> PersistentStorageOutput
Returns a copy 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 PersistentStorageOutput
impl Debug for PersistentStorageOutput
Source§impl<'de> Deserialize<'de> for PersistentStorageOutput
impl<'de> Deserialize<'de> for PersistentStorageOutput
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 PartialEq for PersistentStorageOutput
impl PartialEq for PersistentStorageOutput
Source§impl Serialize for PersistentStorageOutput
impl Serialize for PersistentStorageOutput
impl Eq for PersistentStorageOutput
impl StructuralPartialEq for PersistentStorageOutput
Auto Trait Implementations§
impl Freeze for PersistentStorageOutput
impl RefUnwindSafe for PersistentStorageOutput
impl Send for PersistentStorageOutput
impl Sync for PersistentStorageOutput
impl Unpin for PersistentStorageOutput
impl UnwindSafe for PersistentStorageOutput
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