#[non_exhaustive]pub struct ServerStatusSummary {
pub run_time_assessment_status: Option<RunTimeAssessmentStatus>,
pub count: Option<i32>,
}Expand description
The status summary of the server analysis.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.run_time_assessment_status: Option<RunTimeAssessmentStatus>The status of the run time.
count: Option<i32>The number of servers successfully analyzed, partially successful or failed analysis.
Implementations§
source§impl ServerStatusSummary
impl ServerStatusSummary
sourcepub fn run_time_assessment_status(&self) -> Option<&RunTimeAssessmentStatus>
pub fn run_time_assessment_status(&self) -> Option<&RunTimeAssessmentStatus>
The status of the run time.
source§impl ServerStatusSummary
impl ServerStatusSummary
sourcepub fn builder() -> ServerStatusSummaryBuilder
pub fn builder() -> ServerStatusSummaryBuilder
Creates a new builder-style object to manufacture ServerStatusSummary.
Trait Implementations§
source§impl Clone for ServerStatusSummary
impl Clone for ServerStatusSummary
source§fn clone(&self) -> ServerStatusSummary
fn clone(&self) -> ServerStatusSummary
Returns a copy 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 ServerStatusSummary
impl Debug for ServerStatusSummary
source§impl PartialEq for ServerStatusSummary
impl PartialEq for ServerStatusSummary
source§fn eq(&self, other: &ServerStatusSummary) -> bool
fn eq(&self, other: &ServerStatusSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ServerStatusSummary
Auto Trait Implementations§
impl RefUnwindSafe for ServerStatusSummary
impl Send for ServerStatusSummary
impl Sync for ServerStatusSummary
impl Unpin for ServerStatusSummary
impl UnwindSafe for ServerStatusSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.