pub enum AutoSaveException {
AutoSaveException(AutoSaveException),
}Expand description
Variants§
AutoSaveException(AutoSaveException)
Trait Implementations§
Source§impl Clone for AutoSaveException
impl Clone for AutoSaveException
Source§fn clone(&self) -> AutoSaveException
fn clone(&self) -> AutoSaveException
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 AutoSaveException
impl Debug for AutoSaveException
Source§impl Deserializable for AutoSaveException
impl Deserializable for AutoSaveException
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<AutoSaveException> for AutoSaveException
impl From<AutoSaveException> for AutoSaveException
Source§fn from(x: AutoSaveException) -> Self
fn from(x: AutoSaveException) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AutoSaveException
impl PartialEq for AutoSaveException
Source§impl Serializable for AutoSaveException
impl Serializable for AutoSaveException
Source§impl TryFrom<AutoSaveException> for AutoSaveException
impl TryFrom<AutoSaveException> for AutoSaveException
Source§type Error = AutoSaveException
type Error = AutoSaveException
The type returned in the event of a conversion error.
impl StructuralPartialEq for AutoSaveException
Auto Trait Implementations§
impl Freeze for AutoSaveException
impl RefUnwindSafe for AutoSaveException
impl Send for AutoSaveException
impl Sync for AutoSaveException
impl Unpin for AutoSaveException
impl UnsafeUnpin for AutoSaveException
impl UnwindSafe for AutoSaveException
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