pub struct Deploy {
pub app_id: String,
pub commit_sha: String,
pub id: Uuid,
pub started_at: DateTime<FixedOffset>,
pub ended_at: Option<DateTime<FixedOffset>>,
pub status: DeployStatus,
pub commit_msg: String,
}Fields§
§app_id: StringID приложения.
commit_sha: StringХэш коммита.
id: UuidID.
started_at: DateTime<FixedOffset>Время запуска деплоя.
ended_at: Option<DateTime<FixedOffset>>Время окончания деплоя. Определено для завершенных деплоев
status: DeployStatus§commit_msg: StringСообщение коммита.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Deploy
impl<'de> Deserialize<'de> for Deploy
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 Deploy
Auto Trait Implementations§
impl Freeze for Deploy
impl RefUnwindSafe for Deploy
impl Send for Deploy
impl Sync for Deploy
impl Unpin for Deploy
impl UnsafeUnpin for Deploy
impl UnwindSafe for Deploy
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