pub struct BacklogLevelConfiguration {
pub add_panel_fields: Vec<WorkItemFieldReference>,
pub color: Option<String>,
pub column_fields: Vec<BacklogColumn>,
pub default_work_item_type: Option<WorkItemTypeReference>,
pub id: Option<String>,
pub is_hidden: Option<bool>,
pub name: Option<String>,
pub rank: Option<i32>,
pub type_: Option<Type>,
pub work_item_count_limit: Option<i32>,
pub work_item_types: Vec<WorkItemTypeReference>,
}Fields§
§add_panel_fields: Vec<WorkItemFieldReference>List of fields to include in Add Panel
color: Option<String>Color for the backlog level
column_fields: Vec<BacklogColumn>Default list of columns for the backlog
default_work_item_type: Option<WorkItemTypeReference>Reference to a work item type.
id: Option<String>Backlog Id (for Legacy Backlog Level from process config it can be categoryref name)
Indicates whether the backlog level is hidden
name: Option<String>Backlog Name
rank: Option<i32>Backlog Rank (Taskbacklog is 0)
type_: Option<Type>The type of this backlog level
work_item_count_limit: Option<i32>Max number of work items to show in the given backlog
work_item_types: Vec<WorkItemTypeReference>Work Item types participating in this backlog as known by the project/Process, can be overridden by team settings for bugs
Implementations§
Trait Implementations§
Source§impl Clone for BacklogLevelConfiguration
impl Clone for BacklogLevelConfiguration
Source§fn clone(&self) -> BacklogLevelConfiguration
fn clone(&self) -> BacklogLevelConfiguration
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 BacklogLevelConfiguration
impl Debug for BacklogLevelConfiguration
Source§impl Default for BacklogLevelConfiguration
impl Default for BacklogLevelConfiguration
Source§fn default() -> BacklogLevelConfiguration
fn default() -> BacklogLevelConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BacklogLevelConfiguration
impl<'de> Deserialize<'de> for BacklogLevelConfiguration
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
impl StructuralPartialEq for BacklogLevelConfiguration
Auto Trait Implementations§
impl Freeze for BacklogLevelConfiguration
impl RefUnwindSafe for BacklogLevelConfiguration
impl Send for BacklogLevelConfiguration
impl Sync for BacklogLevelConfiguration
impl Unpin for BacklogLevelConfiguration
impl UnwindSafe for BacklogLevelConfiguration
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