Enum sameold::UnrecognizedEventCode [−][src]
pub enum UnrecognizedEventCode {
Unrecognized,
WithSignificance(SignificanceLevel),
}Expand description
An unrecognized SAME event code
Even if the complete event code is unknown, the parser may
still be able to extract some meaning from it. Most new
messages end in the
SignificanceLevel. A new
“Derecho Warning” message, with fictitious code “DEW,”
still ends in W for Warning. Your client application
should react to it accordingly as a life-threatening Warning,
even if your parser doesn’t know what it is.
If the code is unknown and can’t be coerced to any of the
SignificanceLevel, then
UnrecognizedEventCode::Unrecognized is returned.
Variants
A completely unrecognizable event code
An unknown event code which does match a significance level
Tuple Fields of WithSignificance
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for UnrecognizedEventCode
impl Send for UnrecognizedEventCode
impl Sync for UnrecognizedEventCode
impl Unpin for UnrecognizedEventCode
impl UnwindSafe for UnrecognizedEventCode
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> bool
Checks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SP
The inclusion map: converts self to the equivalent element of its superset.