Struct github_rest::model::misc::deployments::DeploymentStatus
source · pub struct DeploymentStatus {
pub id: i64,
pub node_id: String,
pub state: DeploymentState,
pub creator: Option<SimpleUser>,
pub description: String,
pub deployment_url: String,
pub target_url: String,
pub repository_url: String,
pub url: String,
pub created_at: String,
pub updated_at: String,
}
Fields§
§id: i64
§node_id: String
§state: DeploymentState
§creator: Option<SimpleUser>
§description: String
§deployment_url: String
§target_url: String
§repository_url: String
§url: String
§created_at: String
§updated_at: String
Trait Implementations§
source§impl Clone for DeploymentStatus
impl Clone for DeploymentStatus
source§fn clone(&self) -> DeploymentStatus
fn clone(&self) -> DeploymentStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§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
source§impl PartialEq<DeploymentStatus> for DeploymentStatus
impl PartialEq<DeploymentStatus> for DeploymentStatus
source§fn eq(&self, other: &DeploymentStatus) -> bool
fn eq(&self, other: &DeploymentStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DeploymentStatus
impl Serialize for DeploymentStatus
impl StructuralPartialEq for DeploymentStatus
Auto Trait Implementations§
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