pub struct SupportItem {
pub kind: &'static str,
pub status: SupportStatus,
pub notes: &'static str,
}Expand description
Support-matrix item exposed for documentation and machine-readable CLI output.
Fields§
§kind: &'static strStable item kind.
status: SupportStatusCurrent support status.
notes: &'static strShort operational note.
Trait Implementations§
Source§impl Clone for SupportItem
impl Clone for SupportItem
Source§fn clone(&self) -> SupportItem
fn clone(&self) -> SupportItem
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 SupportItem
impl Debug for SupportItem
Source§impl PartialEq for SupportItem
impl PartialEq for SupportItem
Source§fn eq(&self, other: &SupportItem) -> bool
fn eq(&self, other: &SupportItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SupportItem
impl Eq for SupportItem
impl StructuralPartialEq for SupportItem
Auto Trait Implementations§
impl Freeze for SupportItem
impl RefUnwindSafe for SupportItem
impl Send for SupportItem
impl Sync for SupportItem
impl Unpin for SupportItem
impl UnsafeUnpin for SupportItem
impl UnwindSafe for SupportItem
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