pub struct ServerConfigSnapshot {
pub config_path: Option<String>,
pub resolved_config_dir: String,
pub server_config_file_path: String,
pub server_config_file_present: bool,
pub server_config_file_json: String,
pub stats_db_path: String,
pub rnsd_bin: String,
pub sentineld_bin: String,
pub statsd_bin: String,
pub http: ServerHttpConfigSnapshot,
pub launch_plan: Vec<LaunchProcessSnapshot>,
}Fields§
§config_path: Option<String>§resolved_config_dir: String§server_config_file_path: String§server_config_file_present: bool§server_config_file_json: String§stats_db_path: String§rnsd_bin: String§sentineld_bin: String§statsd_bin: String§http: ServerHttpConfigSnapshot§launch_plan: Vec<LaunchProcessSnapshot>Trait Implementations§
Source§impl Clone for ServerConfigSnapshot
impl Clone for ServerConfigSnapshot
Source§fn clone(&self) -> ServerConfigSnapshot
fn clone(&self) -> ServerConfigSnapshot
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 ServerConfigSnapshot
impl Debug for ServerConfigSnapshot
Auto Trait Implementations§
impl Freeze for ServerConfigSnapshot
impl RefUnwindSafe for ServerConfigSnapshot
impl Send for ServerConfigSnapshot
impl Sync for ServerConfigSnapshot
impl Unpin for ServerConfigSnapshot
impl UnsafeUnpin for ServerConfigSnapshot
impl UnwindSafe for ServerConfigSnapshot
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