pub struct JinxService {
pub name: String,
pub domain: String,
pub image_name: String,
pub image_port: i64,
pub image_envs: Option<Vec<String>>,
pub image_secrets: Option<Vec<String>>,
pub image_volumes: Option<Vec<String>>,
pub published_port: Option<i64>,
pub https_redirect: bool,
pub https: bool,
}Fields§
§name: String§domain: String§image_name: String§image_port: i64§image_envs: Option<Vec<String>>§image_secrets: Option<Vec<String>>§image_volumes: Option<Vec<String>>§published_port: Option<i64>§https_redirect: bool§https: boolTrait Implementations§
Source§impl Clone for JinxService
impl Clone for JinxService
Source§fn clone(&self) -> JinxService
fn clone(&self) -> JinxService
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JinxService
impl Debug for JinxService
Source§impl Default for JinxService
impl Default for JinxService
Source§impl<'de> Deserialize<'de> for JinxService
impl<'de> Deserialize<'de> for JinxService
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
Source§impl PartialEq for JinxService
impl PartialEq for JinxService
Source§impl Serialize for JinxService
impl Serialize for JinxService
impl StructuralPartialEq for JinxService
Auto Trait Implementations§
impl Freeze for JinxService
impl RefUnwindSafe for JinxService
impl Send for JinxService
impl Sync for JinxService
impl Unpin for JinxService
impl UnsafeUnpin for JinxService
impl UnwindSafe for JinxService
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