pub enum ResortCountError {
ZeroResorts,
}Expand description
Domain vocabulary for resort count error decisions in operations workflows.
Variants§
ZeroResorts
Zero resorts operations signal for labor, capacity, or task planning.
Trait Implementations§
Source§impl Clone for ResortCountError
impl Clone for ResortCountError
Source§fn clone(&self) -> ResortCountError
fn clone(&self) -> ResortCountError
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 ResortCountError
impl Debug for ResortCountError
Source§impl Display for ResortCountError
impl Display for ResortCountError
Source§impl Error for ResortCountError
impl Error for ResortCountError
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 ResortCountError
impl PartialEq for ResortCountError
impl Copy for ResortCountError
impl Eq for ResortCountError
impl StructuralPartialEq for ResortCountError
Auto Trait Implementations§
impl Freeze for ResortCountError
impl RefUnwindSafe for ResortCountError
impl Send for ResortCountError
impl Sync for ResortCountError
impl Unpin for ResortCountError
impl UnsafeUnpin for ResortCountError
impl UnwindSafe for ResortCountError
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