pub struct BringUpEntry {
pub lane: Symbol,
pub claims: Expr,
pub verified: bool,
pub firmware: Option<String>,
pub version: Option<String>,
pub notes: Vec<String>,
}Expand description
One hardware lane’s claimed facts and verification state.
Fields§
§lane: SymbolStable hardware lane token.
claims: ExprClaimed hardware facts for this lane, stored as authored SIM data.
verified: boolTrue only after a human hardware audit verifies the lane.
firmware: Option<String>Firmware identifier recorded with the verification evidence.
version: Option<String>Hardware, bridge, or provider version recorded with the verification evidence.
notes: Vec<String>Human-readable notes about the lane and its evidence.
Implementations§
Source§impl BringUpEntry
impl BringUpEntry
Trait Implementations§
Source§impl Clone for BringUpEntry
impl Clone for BringUpEntry
Source§fn clone(&self) -> BringUpEntry
fn clone(&self) -> BringUpEntry
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 BringUpEntry
impl Debug for BringUpEntry
Source§impl PartialEq for BringUpEntry
impl PartialEq for BringUpEntry
impl StructuralPartialEq for BringUpEntry
Auto Trait Implementations§
impl Freeze for BringUpEntry
impl RefUnwindSafe for BringUpEntry
impl Send for BringUpEntry
impl Sync for BringUpEntry
impl Unpin for BringUpEntry
impl UnsafeUnpin for BringUpEntry
impl UnwindSafe for BringUpEntry
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