pub enum ResetType {
Reset,
Restart,
ApplyConfiguration,
Unknown(u32),
}Expand description
Restart scope requested from a station.
Variants§
Reset
Restart
ApplyConfiguration
Unknown(u32)
Preserves an SCCP numeric value not recognized by this crate. Allows newer or vendor-specific values to round-trip without loss.
Implementations§
Trait Implementations§
impl Copy for ResetType
impl Eq for ResetType
impl StructuralPartialEq for ResetType
Auto Trait Implementations§
impl Freeze for ResetType
impl RefUnwindSafe for ResetType
impl Send for ResetType
impl Sync for ResetType
impl Unpin for ResetType
impl UnsafeUnpin for ResetType
impl UnwindSafe for ResetType
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