Struct azure_devops_rust_api::test::models::PhaseReference
source · pub struct PhaseReference {
pub attempt: Option<i32>,
pub phase_name: Option<String>,
}
Expand description
Phase in pipeline
Fields§
§attempt: Option<i32>
Attempt number of the phase
phase_name: Option<String>
Name of the phase. Maximum supported length for name is 256 character.
Implementations§
Trait Implementations§
source§impl Clone for PhaseReference
impl Clone for PhaseReference
source§fn clone(&self) -> PhaseReference
fn clone(&self) -> PhaseReference
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 PhaseReference
impl Debug for PhaseReference
source§impl Default for PhaseReference
impl Default for PhaseReference
source§fn default() -> PhaseReference
fn default() -> PhaseReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PhaseReference
impl<'de> Deserialize<'de> for PhaseReference
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 PhaseReference
impl PartialEq for PhaseReference
source§fn eq(&self, other: &PhaseReference) -> bool
fn eq(&self, other: &PhaseReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PhaseReference
impl Serialize for PhaseReference
impl StructuralPartialEq for PhaseReference
Auto Trait Implementations§
impl RefUnwindSafe for PhaseReference
impl Send for PhaseReference
impl Sync for PhaseReference
impl Unpin for PhaseReference
impl UnwindSafe for PhaseReference
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