pub struct DeploymentStatus {
pub url: String,
pub created_at: String,
pub updated_at: String,
pub state: State,
pub target_url: Option<String>,
pub description: Option<String>,
pub id: u64,
pub deployment_url: String,
pub repository_url: String,
pub creator: User,
}Fields§
§url: String§created_at: String§updated_at: String§state: State§target_url: Option<String>§description: Option<String>§id: u64§deployment_url: String§repository_url: String§creator: UserTrait Implementations§
Source§impl Debug for DeploymentStatus
impl Debug for DeploymentStatus
Source§impl<'de> Deserialize<'de> for DeploymentStatus
impl<'de> Deserialize<'de> for DeploymentStatus
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 DeploymentStatus
impl RefUnwindSafe for DeploymentStatus
impl Send for DeploymentStatus
impl Sync for DeploymentStatus
impl Unpin for DeploymentStatus
impl UnwindSafe for DeploymentStatus
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