pub struct ReleaseEnvironmentShallowReference {
pub links: Option<Value>,
pub id: Option<i32>,
pub name: Option<String>,
pub url: Option<String>,
}Fields§
§links: Option<Value>Links
id: Option<i32>Gets the unique identifier of release environment.
name: Option<String>Gets or sets the name of the release environment.
url: Option<String>Gets the REST API url to access the release environment.
Implementations§
Trait Implementations§
Source§impl Clone for ReleaseEnvironmentShallowReference
impl Clone for ReleaseEnvironmentShallowReference
Source§fn clone(&self) -> ReleaseEnvironmentShallowReference
fn clone(&self) -> ReleaseEnvironmentShallowReference
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 Default for ReleaseEnvironmentShallowReference
impl Default for ReleaseEnvironmentShallowReference
Source§fn default() -> ReleaseEnvironmentShallowReference
fn default() -> ReleaseEnvironmentShallowReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseEnvironmentShallowReference
impl<'de> Deserialize<'de> for ReleaseEnvironmentShallowReference
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 ReleaseEnvironmentShallowReference
impl PartialEq for ReleaseEnvironmentShallowReference
Source§fn eq(&self, other: &ReleaseEnvironmentShallowReference) -> bool
fn eq(&self, other: &ReleaseEnvironmentShallowReference) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReleaseEnvironmentShallowReference
Auto Trait Implementations§
impl Freeze for ReleaseEnvironmentShallowReference
impl RefUnwindSafe for ReleaseEnvironmentShallowReference
impl Send for ReleaseEnvironmentShallowReference
impl Sync for ReleaseEnvironmentShallowReference
impl Unpin for ReleaseEnvironmentShallowReference
impl UnwindSafe for ReleaseEnvironmentShallowReference
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