pub enum BudgetError {
InvalidLayoutMs(f32),
InvalidSinceMs(f32),
}Expand description
予算判定の引数が不正だった場合のエラー。
Variants§
Trait Implementations§
Source§impl Clone for BudgetError
impl Clone for BudgetError
Source§fn clone(&self) -> BudgetError
fn clone(&self) -> BudgetError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BudgetError
Source§impl Debug for BudgetError
impl Debug for BudgetError
Source§impl PartialEq for BudgetError
impl PartialEq for BudgetError
Source§fn eq(&self, other: &BudgetError) -> bool
fn eq(&self, other: &BudgetError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BudgetError
Auto Trait Implementations§
impl Freeze for BudgetError
impl RefUnwindSafe for BudgetError
impl Send for BudgetError
impl Sync for BudgetError
impl Unpin for BudgetError
impl UnsafeUnpin for BudgetError
impl UnwindSafe for BudgetError
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