pub enum AuthorError {
BadEntryType(Vec<ValueType>),
BadType(ValueType),
MissingKey,
}
Variants§
Trait Implementations§
Source§impl Clone for AuthorError
impl Clone for AuthorError
Source§fn clone(&self) -> AuthorError
fn clone(&self) -> AuthorError
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 AuthorError
impl Debug for AuthorError
Source§impl Default for AuthorError
impl Default for AuthorError
Source§fn default() -> AuthorError
fn default() -> AuthorError
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuthorError
impl RefUnwindSafe for AuthorError
impl Send for AuthorError
impl Sync for AuthorError
impl Unpin for AuthorError
impl UnwindSafe for AuthorError
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