pub enum SupportStatus {
Supported,
Partial,
Unsupported,
}Expand description
Support status for documented APRS capabilities and integration surfaces.
Variants§
Supported
Supported by parser semantics or adapter helpers.
Partial
Supported partially; callers should inspect documentation for limits.
Unsupported
Intentionally unsupported in the current release line.
Implementations§
Trait Implementations§
Source§impl Clone for SupportStatus
impl Clone for SupportStatus
Source§fn clone(&self) -> SupportStatus
fn clone(&self) -> SupportStatus
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 moreSource§impl Debug for SupportStatus
impl Debug for SupportStatus
Source§impl PartialEq for SupportStatus
impl PartialEq for SupportStatus
Source§fn eq(&self, other: &SupportStatus) -> bool
fn eq(&self, other: &SupportStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SupportStatus
impl Eq for SupportStatus
impl StructuralPartialEq for SupportStatus
Auto Trait Implementations§
impl Freeze for SupportStatus
impl RefUnwindSafe for SupportStatus
impl Send for SupportStatus
impl Sync for SupportStatus
impl Unpin for SupportStatus
impl UnsafeUnpin for SupportStatus
impl UnwindSafe for SupportStatus
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