pub enum AggregateStateAggregateState {
    Other,
    Aggregated,
    Disaggregated,
    FullyDisaggregated,
    Pseudodisaggregated,
    Partiallydisaggregated,
    Unspecified(u8),
}Expand description
UID 204
Variants§
Other
Aggregated
Disaggregated
FullyDisaggregated
Pseudodisaggregated
Partiallydisaggregated
Unspecified(u8)
Trait Implementations§
Source§impl Clone for AggregateStateAggregateState
 
impl Clone for AggregateStateAggregateState
Source§fn clone(&self) -> AggregateStateAggregateState
 
fn clone(&self) -> AggregateStateAggregateState
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 AggregateStateAggregateState
 
impl Debug for AggregateStateAggregateState
Source§impl From<AggregateStateAggregateState> for u8
 
impl From<AggregateStateAggregateState> for u8
Source§fn from(value: AggregateStateAggregateState) -> Self
 
fn from(value: AggregateStateAggregateState) -> Self
Converts to this type from the input type.
Source§impl From<u8> for AggregateStateAggregateState
 
impl From<u8> for AggregateStateAggregateState
Source§impl Hash for AggregateStateAggregateState
 
impl Hash for AggregateStateAggregateState
Source§impl PartialEq for AggregateStateAggregateState
 
impl PartialEq for AggregateStateAggregateState
Source§fn eq(&self, other: &AggregateStateAggregateState) -> bool
 
fn eq(&self, other: &AggregateStateAggregateState) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl Copy for AggregateStateAggregateState
impl Eq for AggregateStateAggregateState
impl StructuralPartialEq for AggregateStateAggregateState
Auto Trait Implementations§
impl Freeze for AggregateStateAggregateState
impl RefUnwindSafe for AggregateStateAggregateState
impl Send for AggregateStateAggregateState
impl Sync for AggregateStateAggregateState
impl Unpin for AggregateStateAggregateState
impl UnwindSafe for AggregateStateAggregateState
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