pub struct IssueFieldOptionCreateBean {
pub value: String,
pub properties: Option<HashMap<String, Value>>,
pub config: Option<Box<IssueFieldOptionConfiguration>>,
}
Fields§
§value: String
The option’s name, which is displayed in Jira.
properties: Option<HashMap<String, Value>>
The properties of the option as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/) are defined in the descriptor for the issue field module.
config: Option<Box<IssueFieldOptionConfiguration>>
Implementations§
Source§impl IssueFieldOptionCreateBean
impl IssueFieldOptionCreateBean
pub fn new(value: String) -> IssueFieldOptionCreateBean
Trait Implementations§
Source§impl Clone for IssueFieldOptionCreateBean
impl Clone for IssueFieldOptionCreateBean
Source§fn clone(&self) -> IssueFieldOptionCreateBean
fn clone(&self) -> IssueFieldOptionCreateBean
Returns a duplicate 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 IssueFieldOptionCreateBean
impl Debug for IssueFieldOptionCreateBean
Source§impl Default for IssueFieldOptionCreateBean
impl Default for IssueFieldOptionCreateBean
Source§fn default() -> IssueFieldOptionCreateBean
fn default() -> IssueFieldOptionCreateBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueFieldOptionCreateBean
impl<'de> Deserialize<'de> for IssueFieldOptionCreateBean
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 IssueFieldOptionCreateBean
Auto Trait Implementations§
impl Freeze for IssueFieldOptionCreateBean
impl RefUnwindSafe for IssueFieldOptionCreateBean
impl Send for IssueFieldOptionCreateBean
impl Sync for IssueFieldOptionCreateBean
impl Unpin for IssueFieldOptionCreateBean
impl UnwindSafe for IssueFieldOptionCreateBean
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