pub struct FrontendAppDeployment {
pub id: i32,
pub frontend_app_id: String,
pub commit_hash: String,
pub status: DeploymentStatus,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Expand description
A deployment record tied to a FrontendApp.
Fields§
§id: i32§frontend_app_id: String§commit_hash: String§status: DeploymentStatus§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Debug for FrontendAppDeployment
impl Debug for FrontendAppDeployment
Source§impl<'de> Deserialize<'de> for FrontendAppDeployment
impl<'de> Deserialize<'de> for FrontendAppDeployment
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 FrontendAppDeployment
impl RefUnwindSafe for FrontendAppDeployment
impl Send for FrontendAppDeployment
impl Sync for FrontendAppDeployment
impl Unpin for FrontendAppDeployment
impl UnsafeUnpin for FrontendAppDeployment
impl UnwindSafe for FrontendAppDeployment
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