pub struct ReadinessSection {
pub overall_status: CheckStatus,
pub summary: ReadinessSummary,
pub checks: Vec<ReadinessCheck>,
}Fields§
§overall_status: CheckStatus§summary: ReadinessSummary§checks: Vec<ReadinessCheck>Implementations§
Source§impl ReadinessSection
impl ReadinessSection
pub fn new(checks: Vec<ReadinessCheck>) -> Self
Trait Implementations§
Source§impl Clone for ReadinessSection
impl Clone for ReadinessSection
Source§fn clone(&self) -> ReadinessSection
fn clone(&self) -> ReadinessSection
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 ReadinessSection
impl Debug for ReadinessSection
Auto Trait Implementations§
impl Freeze for ReadinessSection
impl RefUnwindSafe for ReadinessSection
impl Send for ReadinessSection
impl Sync for ReadinessSection
impl Unpin for ReadinessSection
impl UnsafeUnpin for ReadinessSection
impl UnwindSafe for ReadinessSection
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