pub struct Settings {
pub server_name: String,
pub max_connections: u32,
pub port: u16,
pub key_name: String,
pub master_ip: String,
pub master_port: u16,
pub domain_pub_key: Option<String>,
}Fields§
§server_name: String§max_connections: u32§port: u16§key_name: String§master_ip: String§master_port: u16§domain_pub_key: Option<String>Auto Trait Implementations§
impl Freeze for Settings
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnwindSafe for Settings
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