pub struct FeatureSupport {
pub id: FeatureId,
pub name: &'static str,
pub description: &'static str,
pub status: SupportStatus,
pub doc_ref: Option<&'static str>,
}Expand description
Metadata entry for a single COBOL feature in the support matrix.
Fields§
§id: FeatureIdUnique identifier for this feature.
name: &'static strHuman-readable feature name.
description: &'static strBrief description of the feature.
status: SupportStatusCurrent implementation status.
doc_ref: Option<&'static str>Path to the relevant documentation section, if any.
Trait Implementations§
Source§impl Clone for FeatureSupport
impl Clone for FeatureSupport
Source§fn clone(&self) -> FeatureSupport
fn clone(&self) -> FeatureSupport
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 FeatureSupport
impl Debug for FeatureSupport
Auto Trait Implementations§
impl Freeze for FeatureSupport
impl RefUnwindSafe for FeatureSupport
impl Send for FeatureSupport
impl Sync for FeatureSupport
impl Unpin for FeatureSupport
impl UnsafeUnpin for FeatureSupport
impl UnwindSafe for FeatureSupport
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