pub struct DeliveryViewPropertyCollection {
pub card_settings: Option<CardSettings>,
pub criteria: Vec<FilterClause>,
pub markers: Vec<Marker>,
pub style_settings: Vec<Rule>,
pub tag_style_settings: Vec<Rule>,
pub team_backlog_mappings: Vec<TeamBacklogMapping>,
}Expand description
Collection of properties, specific to the DeliveryTimelineView
Fields§
§card_settings: Option<CardSettings>Card settings, such as fields and rules
criteria: Vec<FilterClause>Field criteria
markers: Vec<Marker>Markers. Will be missing/null if there are no markers.
style_settings: Vec<Rule>Card style settings
tag_style_settings: Vec<Rule>tag style settings
team_backlog_mappings: Vec<TeamBacklogMapping>Team backlog mappings
Implementations§
Trait Implementations§
source§impl Clone for DeliveryViewPropertyCollection
impl Clone for DeliveryViewPropertyCollection
source§fn clone(&self) -> DeliveryViewPropertyCollection
fn clone(&self) -> DeliveryViewPropertyCollection
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 Default for DeliveryViewPropertyCollection
impl Default for DeliveryViewPropertyCollection
source§fn default() -> DeliveryViewPropertyCollection
fn default() -> DeliveryViewPropertyCollection
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeliveryViewPropertyCollection
impl<'de> Deserialize<'de> for DeliveryViewPropertyCollection
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 DeliveryViewPropertyCollection
impl PartialEq for DeliveryViewPropertyCollection
source§fn eq(&self, other: &DeliveryViewPropertyCollection) -> bool
fn eq(&self, other: &DeliveryViewPropertyCollection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeliveryViewPropertyCollection
Auto Trait Implementations§
impl Freeze for DeliveryViewPropertyCollection
impl RefUnwindSafe for DeliveryViewPropertyCollection
impl Send for DeliveryViewPropertyCollection
impl Sync for DeliveryViewPropertyCollection
impl Unpin for DeliveryViewPropertyCollection
impl UnwindSafe for DeliveryViewPropertyCollection
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