pub enum ScpVariant {
Scp02 {
i_param: u8,
},
Scp03 {
i_param: u8,
},
}Expand description
One advertised secure-channel variant (scp id + i parameter).
Variants§
Trait Implementations§
Source§impl Clone for ScpVariant
impl Clone for ScpVariant
Source§fn clone(&self) -> ScpVariant
fn clone(&self) -> ScpVariant
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 ScpVariant
Source§impl Debug for ScpVariant
impl Debug for ScpVariant
impl Eq for ScpVariant
Source§impl PartialEq for ScpVariant
impl PartialEq for ScpVariant
impl StructuralPartialEq for ScpVariant
Auto Trait Implementations§
impl Freeze for ScpVariant
impl RefUnwindSafe for ScpVariant
impl Send for ScpVariant
impl Sync for ScpVariant
impl Unpin for ScpVariant
impl UnsafeUnpin for ScpVariant
impl UnwindSafe for ScpVariant
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