pub struct ReleaseUpdateMetadata {
pub comment: Option<String>,
pub keep_forever: Option<bool>,
pub manual_environments: Vec<String>,
pub name: Option<String>,
pub status: Option<Status>,
}
Expand description
Fields§
§comment: Option<String>
Sets comment for release.
keep_forever: Option<bool>
Set ‘true’ to exclude the release from retention policies.
manual_environments: Vec<String>
Sets list of manual environments.
name: Option<String>
Sets name of the release.
status: Option<Status>
Sets status of the release.
Implementations§
Trait Implementations§
source§impl Clone for ReleaseUpdateMetadata
impl Clone for ReleaseUpdateMetadata
source§fn clone(&self) -> ReleaseUpdateMetadata
fn clone(&self) -> ReleaseUpdateMetadata
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 ReleaseUpdateMetadata
impl Debug for ReleaseUpdateMetadata
source§impl Default for ReleaseUpdateMetadata
impl Default for ReleaseUpdateMetadata
source§fn default() -> ReleaseUpdateMetadata
fn default() -> ReleaseUpdateMetadata
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReleaseUpdateMetadata
impl<'de> Deserialize<'de> for ReleaseUpdateMetadata
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 ReleaseUpdateMetadata
impl PartialEq for ReleaseUpdateMetadata
source§fn eq(&self, other: &ReleaseUpdateMetadata) -> bool
fn eq(&self, other: &ReleaseUpdateMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ReleaseUpdateMetadata
impl Serialize for ReleaseUpdateMetadata
impl StructuralPartialEq for ReleaseUpdateMetadata
Auto Trait Implementations§
impl RefUnwindSafe for ReleaseUpdateMetadata
impl Send for ReleaseUpdateMetadata
impl Sync for ReleaseUpdateMetadata
impl Unpin for ReleaseUpdateMetadata
impl UnwindSafe for ReleaseUpdateMetadata
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