pub struct ApplicationSettings {
pub host: String,
pub port: u16,
pub worker_threads: usize,
}Fields§
§host: String§port: u16§worker_threads: usizeThe number of workers to start
by default, the number of the machine’s physical cores.
Trait Implementations§
source§impl Clone for ApplicationSettings
impl Clone for ApplicationSettings
source§fn clone(&self) -> ApplicationSettings
fn clone(&self) -> ApplicationSettings
Returns a copy 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 ApplicationSettings
impl Debug for ApplicationSettings
source§impl<'de> Deserialize<'de> for ApplicationSettings
impl<'de> Deserialize<'de> for ApplicationSettings
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ApplicationSettings
impl Send for ApplicationSettings
impl Sync for ApplicationSettings
impl Unpin for ApplicationSettings
impl UnwindSafe for ApplicationSettings
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