pub struct ServicePlan {
pub name: String,
pub provider: String,
pub version: String,
pub image: Option<OciRef>,
pub image_ref: Option<String>,
pub digest: Option<String>,
pub deploy: ServiceDeployPlan,
}Fields§
§name: String§provider: String§version: String§image: Option<OciRef>§image_ref: Option<String>§digest: Option<String>§deploy: ServiceDeployPlanTrait Implementations§
Source§impl Clone for ServicePlan
impl Clone for ServicePlan
Source§fn clone(&self) -> ServicePlan
fn clone(&self) -> ServicePlan
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 ServicePlan
impl Debug for ServicePlan
Source§impl<'de> Deserialize<'de> for ServicePlan
impl<'de> Deserialize<'de> for ServicePlan
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 ServicePlan
impl RefUnwindSafe for ServicePlan
impl Send for ServicePlan
impl Sync for ServicePlan
impl Unpin for ServicePlan
impl UnsafeUnpin for ServicePlan
impl UnwindSafe for ServicePlan
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