#[non_exhaustive]pub enum AuthHostSkipReason {
Inactive,
XrfPrefix,
EmptyIp,
EmptyCallsign,
MalformedIp,
}Expand description
Reason an auth host record was skipped during chunk parsing.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Inactive
Record’s active flag (high bit of byte 25) was clear.
XrfPrefix
Callsign field starts with XRF — the reference filters these
out before caching.
EmptyIp
IP field is empty after trimming.
EmptyCallsign
Callsign field is empty after trimming.
MalformedIp
IP field couldn’t be parsed as IPv4 ASCII.
Trait Implementations§
Source§impl Clone for AuthHostSkipReason
impl Clone for AuthHostSkipReason
Source§fn clone(&self) -> AuthHostSkipReason
fn clone(&self) -> AuthHostSkipReason
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 AuthHostSkipReason
impl Debug for AuthHostSkipReason
Source§impl PartialEq for AuthHostSkipReason
impl PartialEq for AuthHostSkipReason
impl Copy for AuthHostSkipReason
impl Eq for AuthHostSkipReason
impl StructuralPartialEq for AuthHostSkipReason
Auto Trait Implementations§
impl Freeze for AuthHostSkipReason
impl RefUnwindSafe for AuthHostSkipReason
impl Send for AuthHostSkipReason
impl Sync for AuthHostSkipReason
impl Unpin for AuthHostSkipReason
impl UnwindSafe for AuthHostSkipReason
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