pub struct BootConfig {
pub public_key: [u8; 1952],
pub witness_log_config: WitnessLogConfig,
pub verbose: bool,
pub platform_id_override: u64,
}Expand description
Boot loader configuration.
Fields§
§public_key: [u8; 1952]Boot public key for signature verification.
witness_log_config: WitnessLogConfigWitness log configuration.
verbose: boolWhether to enable verbose boot logging.
platform_id_override: u64Platform identifier override (0 = auto-detect).
Trait Implementations§
Source§impl Clone for BootConfig
impl Clone for BootConfig
Source§fn clone(&self) -> BootConfig
fn clone(&self) -> BootConfig
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 BootConfig
impl Debug for BootConfig
Auto Trait Implementations§
impl Freeze for BootConfig
impl RefUnwindSafe for BootConfig
impl Send for BootConfig
impl Sync for BootConfig
impl Unpin for BootConfig
impl UnsafeUnpin for BootConfig
impl UnwindSafe for BootConfig
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