pub struct ServerManagerConfig {
pub pid_file: String,
}
Expand description
Configuration parameters for server management.
Holds all necessary configuration values for server operation.
Fields§
§pid_file: String
Path to the PID file for process tracking.
Trait Implementations§
Source§impl Clone for ServerManagerConfig
impl Clone for ServerManagerConfig
Source§fn clone(&self) -> ServerManagerConfig
fn clone(&self) -> ServerManagerConfig
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 moreAuto Trait Implementations§
impl Freeze for ServerManagerConfig
impl RefUnwindSafe for ServerManagerConfig
impl Send for ServerManagerConfig
impl Sync for ServerManagerConfig
impl Unpin for ServerManagerConfig
impl UnwindSafe for ServerManagerConfig
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