Struct azure_devops_rust_api::work::models::BacklogLevel
source · pub struct BacklogLevel {
pub category_reference_name: Option<String>,
pub plural_name: Option<String>,
pub work_item_states: Vec<String>,
pub work_item_types: Vec<String>,
}Expand description
Contract representing a backlog level
Fields§
§category_reference_name: Option<String>Reference name of the corresponding WIT category
plural_name: Option<String>Plural name for the backlog level
work_item_states: Vec<String>Collection of work item states that are included in the plan. The server will filter to only these work item types.
work_item_types: Vec<String>Collection of valid workitem type names for the given backlog level
Implementations§
source§impl BacklogLevel
impl BacklogLevel
Trait Implementations§
source§impl Clone for BacklogLevel
impl Clone for BacklogLevel
source§fn clone(&self) -> BacklogLevel
fn clone(&self) -> BacklogLevel
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 BacklogLevel
impl Debug for BacklogLevel
source§impl Default for BacklogLevel
impl Default for BacklogLevel
source§fn default() -> BacklogLevel
fn default() -> BacklogLevel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BacklogLevel
impl<'de> Deserialize<'de> for BacklogLevel
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 BacklogLevel
impl PartialEq for BacklogLevel
source§fn eq(&self, other: &BacklogLevel) -> bool
fn eq(&self, other: &BacklogLevel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for BacklogLevel
impl Serialize for BacklogLevel
impl StructuralPartialEq for BacklogLevel
Auto Trait Implementations§
impl RefUnwindSafe for BacklogLevel
impl Send for BacklogLevel
impl Sync for BacklogLevel
impl Unpin for BacklogLevel
impl UnwindSafe for BacklogLevel
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