pub struct LabelValueDefinition {
pub identifier: String,
pub configurable: bool,
pub default_setting: LabelPreference,
pub flags: Vec<LabelFlag>,
pub severity: LabelSeverity,
pub blurs: LabelBlurs,
pub behaviors: LabelBehaviors,
}Expand description
An interpreted label value definition.
Fields§
§identifier: String§configurable: bool§default_setting: LabelPreference§flags: Vec<LabelFlag>§severity: LabelSeverity§blurs: LabelBlurs§behaviors: LabelBehaviorsTrait Implementations§
Source§impl Clone for LabelValueDefinition
impl Clone for LabelValueDefinition
Source§fn clone(&self) -> LabelValueDefinition
fn clone(&self) -> LabelValueDefinition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LabelValueDefinition
impl RefUnwindSafe for LabelValueDefinition
impl Send for LabelValueDefinition
impl Sync for LabelValueDefinition
impl Unpin for LabelValueDefinition
impl UnsafeUnpin for LabelValueDefinition
impl UnwindSafe for LabelValueDefinition
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