Struct azure_devops_rust_api::processes::models::Group
source · pub struct Group {
pub contribution: Option<WitContribution>,
pub controls: Vec<Control>,
pub height: Option<i32>,
pub id: Option<String>,
pub inherited: Option<bool>,
pub is_contribution: Option<bool>,
pub label: Option<String>,
pub order: Option<i32>,
pub overridden: Option<bool>,
pub visible: Option<bool>,
}
Expand description
Represent a group in the form that holds controls in it.
Fields§
§contribution: Option<WitContribution>
Properties of a work item form contribution
controls: Vec<Control>
Controls to be put in the group.
height: Option<i32>
The height for the contribution.
id: Option<String>
The id for the layout node.
inherited: Option<bool>
A value indicating whether this layout node has been inherited from a parent layout. This is expected to only be only set by the combiner.
is_contribution: Option<bool>
A value indicating if the layout node is contribution are not.
label: Option<String>
Label for the group.
order: Option<i32>
Order in which the group should appear in the section.
overridden: Option<bool>
A value indicating whether this layout node has been overridden by a child layout.
visible: Option<bool>
A value indicating if the group should be hidden or not.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Group
impl<'de> Deserialize<'de> for Group
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 Group
impl PartialEq for Group
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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