pub struct PendingDeploymentEnvironment {
pub id: Option<i32>,
pub node_id: Option<String>,
pub name: Option<String>,
pub url: Option<String>,
pub html_url: Option<String>,
}
Fields§
§id: Option<i32>
The id of the environment.
node_id: Option<String>
§name: Option<String>
The name of the environment.
url: Option<String>
§html_url: Option<String>
Implementations§
Source§impl PendingDeploymentEnvironment
impl PendingDeploymentEnvironment
pub fn new() -> PendingDeploymentEnvironment
Trait Implementations§
Source§impl Clone for PendingDeploymentEnvironment
impl Clone for PendingDeploymentEnvironment
Source§fn clone(&self) -> PendingDeploymentEnvironment
fn clone(&self) -> PendingDeploymentEnvironment
Returns a duplicate 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 PendingDeploymentEnvironment
impl Debug for PendingDeploymentEnvironment
Source§impl Default for PendingDeploymentEnvironment
impl Default for PendingDeploymentEnvironment
Source§fn default() -> PendingDeploymentEnvironment
fn default() -> PendingDeploymentEnvironment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingDeploymentEnvironment
impl<'de> Deserialize<'de> for PendingDeploymentEnvironment
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 for PendingDeploymentEnvironment
impl PartialEq for PendingDeploymentEnvironment
Source§fn eq(&self, other: &PendingDeploymentEnvironment) -> bool
fn eq(&self, other: &PendingDeploymentEnvironment) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PendingDeploymentEnvironment
Auto Trait Implementations§
impl Freeze for PendingDeploymentEnvironment
impl RefUnwindSafe for PendingDeploymentEnvironment
impl Send for PendingDeploymentEnvironment
impl Sync for PendingDeploymentEnvironment
impl Unpin for PendingDeploymentEnvironment
impl UnwindSafe for PendingDeploymentEnvironment
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