pub struct CertificationClass {
pub name: &'static str,
pub category: CertificationCategory,
pub evidence: &'static [&'static str],
pub smoke_ready: bool,
}Expand description
One certification class from spec §14.6.
Fields§
§name: &'static strClass name.
category: CertificationCategorySpec category.
evidence: &'static [&'static str]In-repo evidence paths (tests, workflows, benches).
smoke_ready: boolWhether a smoke entry point exists in-tree today.
Trait Implementations§
Source§impl Clone for CertificationClass
impl Clone for CertificationClass
Source§fn clone(&self) -> CertificationClass
fn clone(&self) -> CertificationClass
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 CertificationClass
impl Debug for CertificationClass
impl Eq for CertificationClass
Source§impl PartialEq for CertificationClass
impl PartialEq for CertificationClass
Source§impl Serialize for CertificationClass
impl Serialize for CertificationClass
impl StructuralPartialEq for CertificationClass
Auto Trait Implementations§
impl Freeze for CertificationClass
impl RefUnwindSafe for CertificationClass
impl Send for CertificationClass
impl Sync for CertificationClass
impl Unpin for CertificationClass
impl UnsafeUnpin for CertificationClass
impl UnwindSafe for CertificationClass
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more