pub struct Deploy {
pub id: i64,
pub project_id: Option<i64>,
pub git_sha: String,
pub version: Option<String>,
pub env: Option<String>,
pub deployed_at: String,
pub description: Option<String>,
pub deployer: Option<String>,
}Fields§
§id: i64§project_id: Option<i64>§git_sha: String§version: Option<String>§env: Option<String>§deployed_at: String§description: Option<String>§deployer: Option<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
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