pub enum StoredResortCountError {
ZeroResorts,
}Expand description
Validation failures for persisted resort-count quantities.
Variants§
ZeroResorts
Stable storage code for zero resorts.
Trait Implementations§
Source§impl Clone for StoredResortCountError
impl Clone for StoredResortCountError
Source§fn clone(&self) -> StoredResortCountError
fn clone(&self) -> StoredResortCountError
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 StoredResortCountError
impl Debug for StoredResortCountError
Source§impl Display for StoredResortCountError
impl Display for StoredResortCountError
Source§impl Error for StoredResortCountError
impl Error for StoredResortCountError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for StoredResortCountError
impl PartialEq for StoredResortCountError
impl Copy for StoredResortCountError
impl Eq for StoredResortCountError
impl StructuralPartialEq for StoredResortCountError
Auto Trait Implementations§
impl Freeze for StoredResortCountError
impl RefUnwindSafe for StoredResortCountError
impl Send for StoredResortCountError
impl Sync for StoredResortCountError
impl Unpin for StoredResortCountError
impl UnsafeUnpin for StoredResortCountError
impl UnwindSafe for StoredResortCountError
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