pub struct JinxConf {
pub nginx_user: String,
pub nginx_worker_processes: u8,
pub nginx_worker_connections: u16,
pub jinx_services: Vec<JinxService>,
}Fields§
§nginx_user: String§nginx_worker_processes: u8§nginx_worker_connections: u16§jinx_services: Vec<JinxService>Trait Implementations§
Source§impl<'de> Deserialize<'de> for JinxConf
impl<'de> Deserialize<'de> for JinxConf
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 Freeze for JinxConf
impl RefUnwindSafe for JinxConf
impl Send for JinxConf
impl Sync for JinxConf
impl Unpin for JinxConf
impl UnsafeUnpin for JinxConf
impl UnwindSafe for JinxConf
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