#[repr(u8)]pub enum GroupcastTestResult {
Success = 0,
Generalerror = 1,
Messagereplay = 2,
Failedauth = 3,
Noavailablekey = 4,
Sendfailure = 5,
}Variants§
Success = 0
There was no failure
Generalerror = 1
Other error during processing not otherwise covered
Messagereplay = 2
Message counter was <= counter from last received
Failedauth = 3
Message authentication failed
Noavailablekey = 4
No key was found to process the message
Sendfailure = 5
Issue with attempting to send a multicast IPv6 message
Implementations§
Trait Implementations§
Source§impl Clone for GroupcastTestResult
impl Clone for GroupcastTestResult
Source§fn clone(&self) -> GroupcastTestResult
fn clone(&self) -> GroupcastTestResult
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 GroupcastTestResult
impl Debug for GroupcastTestResult
Source§impl<'de> Deserialize<'de> for GroupcastTestResult
impl<'de> Deserialize<'de> for GroupcastTestResult
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
Source§impl From<GroupcastTestResult> for u8
impl From<GroupcastTestResult> for u8
Source§fn from(val: GroupcastTestResult) -> Self
fn from(val: GroupcastTestResult) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GroupcastTestResult
impl PartialEq for GroupcastTestResult
Source§impl Serialize for GroupcastTestResult
impl Serialize for GroupcastTestResult
impl Copy for GroupcastTestResult
impl Eq for GroupcastTestResult
impl StructuralPartialEq for GroupcastTestResult
Auto Trait Implementations§
impl Freeze for GroupcastTestResult
impl RefUnwindSafe for GroupcastTestResult
impl Send for GroupcastTestResult
impl Sync for GroupcastTestResult
impl Unpin for GroupcastTestResult
impl UnsafeUnpin for GroupcastTestResult
impl UnwindSafe for GroupcastTestResult
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