pub struct NewDeploymentResource {
pub id: Option<Uuid>,
pub created_at: Option<DateTime<Utc>>,
pub type_id: Uuid,
pub deployment_id: Uuid,
pub name: String,
pub props: Value,
pub sync_status: Option<SyncStatus>,
}
Fields§
§id: Option<Uuid>
§created_at: Option<DateTime<Utc>>
§type_id: Uuid
§deployment_id: Uuid
§name: String
§props: Value
§sync_status: Option<SyncStatus>
Trait Implementations§
Source§impl Debug for NewDeploymentResource
impl Debug for NewDeploymentResource
Source§impl<'de> Deserialize<'de> for NewDeploymentResource
impl<'de> Deserialize<'de> for NewDeploymentResource
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 NewDeploymentResource
impl RefUnwindSafe for NewDeploymentResource
impl Send for NewDeploymentResource
impl Sync for NewDeploymentResource
impl Unpin for NewDeploymentResource
impl UnwindSafe for NewDeploymentResource
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