#[non_exhaustive]pub enum SupportStatus {
Supported,
Partial,
Planned,
NotPlanned,
}Expand description
Current implementation status of a COBOL feature.
§Examples
use copybook_support_matrix::{SupportStatus, FeatureId, find_feature_by_id};
if let Some(feature) = find_feature_by_id(FeatureId::EditedPic) {
if let SupportStatus::Supported = feature.status {
// Feature is fully supported
}
}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.
Supported
Fully implemented and tested.
Partial
Partially implemented with known limitations.
Planned
Planned for a future release.
NotPlanned
Not planned for implementation.
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 · 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§impl Serialize for SupportStatus
impl Serialize for SupportStatus
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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