#[repr(u32)]pub enum AcctStatusType {
Start,
Stop,
Alive,
InterimUpdate,
AccountingOn,
AccountingOff,
Failed,
Unknown(u32),
}Variants§
Trait Implementations§
Source§impl Clone for AcctStatusType
impl Clone for AcctStatusType
Source§fn clone(&self) -> AcctStatusType
fn clone(&self) -> AcctStatusType
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 AcctStatusType
impl Debug for AcctStatusType
Source§impl From<AcctStatusType> for u32
impl From<AcctStatusType> for u32
Source§fn from(e: AcctStatusType) -> Self
fn from(e: AcctStatusType) -> Self
Converts to this type from the input type.
Source§impl From<u32> for AcctStatusType
impl From<u32> for AcctStatusType
Source§impl PartialEq for AcctStatusType
impl PartialEq for AcctStatusType
impl Copy for AcctStatusType
impl Eq for AcctStatusType
impl StructuralPartialEq for AcctStatusType
Auto Trait Implementations§
impl Freeze for AcctStatusType
impl RefUnwindSafe for AcctStatusType
impl Send for AcctStatusType
impl Sync for AcctStatusType
impl Unpin for AcctStatusType
impl UnwindSafe for AcctStatusType
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