#[non_exhaustive]pub enum BootstrapComponent {
Workflow,
Keyring,
Variables,
RequiredCheck,
Extra,
}Expand description
Which part of the VTC’s bootstrap status (§4.3 bootstrap) a step
satisfies — the four dots on the Repos page.
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.
Workflow
The verify-trust workflow.
Keyring
The exempt platform keyring.
Variables
The TRUST_REGISTRY_DID / VTC_DID variables.
RequiredCheck
The protection that requires the check.
Extra
Anything else (community files, forge-specific settings).
Trait Implementations§
Source§impl Clone for BootstrapComponent
impl Clone for BootstrapComponent
impl Copy for BootstrapComponent
Source§impl Debug for BootstrapComponent
impl Debug for BootstrapComponent
Source§impl<'de> Deserialize<'de> for BootstrapComponent
impl<'de> Deserialize<'de> for BootstrapComponent
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 BootstrapComponent
Source§impl Hash for BootstrapComponent
impl Hash for BootstrapComponent
Source§impl PartialEq for BootstrapComponent
impl PartialEq for BootstrapComponent
Source§impl Serialize for BootstrapComponent
impl Serialize for BootstrapComponent
impl StructuralPartialEq for BootstrapComponent
Auto Trait Implementations§
impl Freeze for BootstrapComponent
impl RefUnwindSafe for BootstrapComponent
impl Send for BootstrapComponent
impl Sync for BootstrapComponent
impl Unpin for BootstrapComponent
impl UnsafeUnpin for BootstrapComponent
impl UnwindSafe for BootstrapComponent
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