pub struct ServerConfigStatusSnapshot {Show 14 fields
pub last_saved_age_seconds: Option<f64>,
pub last_apply_age_seconds: Option<f64>,
pub last_action: Option<String>,
pub last_action_age_seconds: Option<f64>,
pub pending_action: Option<String>,
pub pending_targets: Vec<String>,
pub blocking_reason: Option<String>,
pub pending_process_restarts: Vec<String>,
pub control_plane_reload_required: bool,
pub control_plane_restart_required: bool,
pub runtime_differs_from_saved: bool,
pub converged: bool,
pub summary: String,
pub last_apply_plan: Option<ServerConfigApplyPlan>,
}Fields§
§last_saved_age_seconds: Option<f64>§last_apply_age_seconds: Option<f64>§last_action: Option<String>§last_action_age_seconds: Option<f64>§pending_action: Option<String>§pending_targets: Vec<String>§blocking_reason: Option<String>§pending_process_restarts: Vec<String>§control_plane_reload_required: bool§control_plane_restart_required: bool§runtime_differs_from_saved: bool§converged: bool§summary: String§last_apply_plan: Option<ServerConfigApplyPlan>Trait Implementations§
Source§impl Clone for ServerConfigStatusSnapshot
impl Clone for ServerConfigStatusSnapshot
Source§fn clone(&self) -> ServerConfigStatusSnapshot
fn clone(&self) -> ServerConfigStatusSnapshot
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 ServerConfigStatusSnapshot
impl Debug for ServerConfigStatusSnapshot
Auto Trait Implementations§
impl Freeze for ServerConfigStatusSnapshot
impl RefUnwindSafe for ServerConfigStatusSnapshot
impl Send for ServerConfigStatusSnapshot
impl Sync for ServerConfigStatusSnapshot
impl Unpin for ServerConfigStatusSnapshot
impl UnsafeUnpin for ServerConfigStatusSnapshot
impl UnwindSafe for ServerConfigStatusSnapshot
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> InterfaceConfigData for Twhere
T: Send + 'static,
impl<T> InterfaceConfigData for Twhere
T: Send + 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more