pub struct BootstrapState {
pub manifest: Option<SessionManifest>,
pub feature_list: Vec<FeatureRecord>,
pub recent_progress: Vec<ProgressEntry>,
pub checkpoints: Vec<RunCheckpoint>,
}Fields§
§manifest: Option<SessionManifest>§feature_list: Vec<FeatureRecord>§recent_progress: Vec<ProgressEntry>§checkpoints: Vec<RunCheckpoint>Trait Implementations§
Source§impl Clone for BootstrapState
impl Clone for BootstrapState
Source§fn clone(&self) -> BootstrapState
fn clone(&self) -> BootstrapState
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 BootstrapState
impl Debug for BootstrapState
Source§impl Default for BootstrapState
impl Default for BootstrapState
Source§fn default() -> BootstrapState
fn default() -> BootstrapState
Returns the “default value” for a type. Read more
Source§impl PartialEq for BootstrapState
impl PartialEq for BootstrapState
impl Eq for BootstrapState
impl StructuralPartialEq for BootstrapState
Auto Trait Implementations§
impl Freeze for BootstrapState
impl RefUnwindSafe for BootstrapState
impl Send for BootstrapState
impl Sync for BootstrapState
impl Unpin for BootstrapState
impl UnsafeUnpin for BootstrapState
impl UnwindSafe for BootstrapState
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