pub struct ConsoleBootstrap {
pub version: Box<VersionInfo>,
pub workspace: Box<ConsoleBootstrapWorkspace>,
pub health: Box<ConsoleBootstrapHealth>,
pub counts: Box<ConsoleBootstrapCounts>,
pub receipts: Vec<Receipt>,
pub conformance: Box<ConsoleBootstrapConformance>,
pub mcp: Box<ConsoleBootstrapMcp>,
}Fields§
§version: Box<VersionInfo>§workspace: Box<ConsoleBootstrapWorkspace>§health: Box<ConsoleBootstrapHealth>§counts: Box<ConsoleBootstrapCounts>§receipts: Vec<Receipt>§conformance: Box<ConsoleBootstrapConformance>§mcp: Box<ConsoleBootstrapMcp>Implementations§
Source§impl ConsoleBootstrap
impl ConsoleBootstrap
pub fn new( version: VersionInfo, workspace: ConsoleBootstrapWorkspace, health: ConsoleBootstrapHealth, counts: ConsoleBootstrapCounts, receipts: Vec<Receipt>, conformance: ConsoleBootstrapConformance, mcp: ConsoleBootstrapMcp, ) -> ConsoleBootstrap
Trait Implementations§
Source§impl Clone for ConsoleBootstrap
impl Clone for ConsoleBootstrap
Source§fn clone(&self) -> ConsoleBootstrap
fn clone(&self) -> ConsoleBootstrap
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 ConsoleBootstrap
impl Debug for ConsoleBootstrap
Source§impl Default for ConsoleBootstrap
impl Default for ConsoleBootstrap
Source§fn default() -> ConsoleBootstrap
fn default() -> ConsoleBootstrap
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConsoleBootstrap
impl<'de> Deserialize<'de> for ConsoleBootstrap
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
Source§impl PartialEq for ConsoleBootstrap
impl PartialEq for ConsoleBootstrap
Source§fn eq(&self, other: &ConsoleBootstrap) -> bool
fn eq(&self, other: &ConsoleBootstrap) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConsoleBootstrap
impl Serialize for ConsoleBootstrap
impl StructuralPartialEq for ConsoleBootstrap
Auto Trait Implementations§
impl Freeze for ConsoleBootstrap
impl RefUnwindSafe for ConsoleBootstrap
impl Send for ConsoleBootstrap
impl Sync for ConsoleBootstrap
impl Unpin for ConsoleBootstrap
impl UnsafeUnpin for ConsoleBootstrap
impl UnwindSafe for ConsoleBootstrap
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