pub struct StartupStatus {
pub auth_configured: bool,
pub manifest_available: bool,
pub missing_manifests: Vec<String>,
pub ready_for_operations: bool,
}Expand description
Results of startup validation checks
Fields§
§auth_configured: boolWhether authentication is properly configured
manifest_available: boolWhether manifest files are available
missing_manifests: Vec<String>List of missing manifest files
ready_for_operations: boolWhether the system is ready for operations
Implementations§
Trait Implementations§
Source§impl Clone for StartupStatus
impl Clone for StartupStatus
Source§fn clone(&self) -> StartupStatus
fn clone(&self) -> StartupStatus
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 StartupStatus
impl Debug for StartupStatus
Auto Trait Implementations§
impl Freeze for StartupStatus
impl RefUnwindSafe for StartupStatus
impl Send for StartupStatus
impl Sync for StartupStatus
impl Unpin for StartupStatus
impl UnsafeUnpin for StartupStatus
impl UnwindSafe for StartupStatus
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