pub struct CreateMetaAllowedValue {
pub id: Option<String>,
pub value: Option<String>,
pub children: Vec<Self>,
}Expand description
One allowed value for a field, normalized across the shapes JIRA returns
(option value, version/component/priority name, cascading children).
Fields§
§id: Option<String>Option ID, when present.
value: Option<String>Display value: the option’s value, falling back to its name.
children: Vec<Self>Nested options for cascading-select fields.
Trait Implementations§
Source§impl Clone for CreateMetaAllowedValue
impl Clone for CreateMetaAllowedValue
Source§fn clone(&self) -> CreateMetaAllowedValue
fn clone(&self) -> CreateMetaAllowedValue
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 moreSource§impl Debug for CreateMetaAllowedValue
impl Debug for CreateMetaAllowedValue
Auto Trait Implementations§
impl Freeze for CreateMetaAllowedValue
impl RefUnwindSafe for CreateMetaAllowedValue
impl Send for CreateMetaAllowedValue
impl Sync for CreateMetaAllowedValue
impl Unpin for CreateMetaAllowedValue
impl UnsafeUnpin for CreateMetaAllowedValue
impl UnwindSafe for CreateMetaAllowedValue
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