#[non_exhaustive]pub enum BudgetEvent {
Updated {
usage: Usage,
},
}Expand description
Budget-accounting facts.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for BudgetEvent
impl Clone for BudgetEvent
Source§fn clone(&self) -> BudgetEvent
fn clone(&self) -> BudgetEvent
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 moreSource§impl Debug for BudgetEvent
impl Debug for BudgetEvent
Source§impl<'de> Deserialize<'de> for BudgetEvent
impl<'de> Deserialize<'de> for BudgetEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BudgetEvent
Source§impl PartialEq for BudgetEvent
impl PartialEq for BudgetEvent
Source§impl Serialize for BudgetEvent
impl Serialize for BudgetEvent
impl StructuralPartialEq for BudgetEvent
Auto Trait Implementations§
impl Freeze for BudgetEvent
impl RefUnwindSafe for BudgetEvent
impl Send for BudgetEvent
impl Sync for BudgetEvent
impl Unpin for BudgetEvent
impl UnsafeUnpin for BudgetEvent
impl UnwindSafe for BudgetEvent
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