pub struct Service {
pub id: String,
pub name: String,
pub description: String,
pub image_id: String,
pub image_tag: String,
pub command: String,
pub args: Vec<String>,
pub privileged: bool,
pub volume_mounts: Vec<ServiceVolumeMount>,
pub env_vars: Vec<ServiceEnvVar>,
}Fields§
§id: String§name: String§description: String§image_id: String§image_tag: String§command: String§args: Vec<String>§privileged: bool§volume_mounts: Vec<ServiceVolumeMount>§env_vars: Vec<ServiceEnvVar>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Service
impl<'de> Deserialize<'de> for Service
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
impl StructuralPartialEq for Service
Auto Trait Implementations§
impl Freeze for Service
impl RefUnwindSafe for Service
impl Send for Service
impl Sync for Service
impl Unpin for Service
impl UnwindSafe for Service
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