pub enum CraPhase {
Phase1,
Phase2,
}Expand description
CRA enforcement phase
Variants§
Phase1
Phase 1: Article 14 reporting obligations — apply from 11 September 2026 (Reg. (EU) 2024/2847 Art. 71(2)). Basic SBOM requirements: product/component identification, manufacturer, version, format
Phase2
Phase 2: full application of the regulation — from 11 December 2027
(Art. 71(2)). Adds: vulnerability metadata, lifecycle/end-of-support,
disclosure policy, EU DoC
Implementations§
Trait Implementations§
impl Copy for CraPhase
Source§impl<'de> Deserialize<'de> for CraPhase
impl<'de> Deserialize<'de> for CraPhase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CraPhase
impl StructuralPartialEq for CraPhase
Auto Trait Implementations§
impl Freeze for CraPhase
impl RefUnwindSafe for CraPhase
impl Send for CraPhase
impl Sync for CraPhase
impl Unpin for CraPhase
impl UnsafeUnpin for CraPhase
impl UnwindSafe for CraPhase
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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