pub struct IssueFieldOptionConfiguration {
pub scope: Option<IssueFieldOptionScopeBean>,
pub attributes: Option<HashSet<Attributes>>,
}
Expand description
IssueFieldOptionConfiguration : Details of the projects the option is available in.
Fields§
§scope: Option<IssueFieldOptionScopeBean>
Defines the projects that the option is available in. If the scope is not defined, then the option is available in all projects.
attributes: Option<HashSet<Attributes>>
DEPRECATED
Implementations§
Source§impl IssueFieldOptionConfiguration
impl IssueFieldOptionConfiguration
Sourcepub fn new() -> IssueFieldOptionConfiguration
pub fn new() -> IssueFieldOptionConfiguration
Details of the projects the option is available in.
Trait Implementations§
Source§impl Clone for IssueFieldOptionConfiguration
impl Clone for IssueFieldOptionConfiguration
Source§fn clone(&self) -> IssueFieldOptionConfiguration
fn clone(&self) -> IssueFieldOptionConfiguration
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 Default for IssueFieldOptionConfiguration
impl Default for IssueFieldOptionConfiguration
Source§fn default() -> IssueFieldOptionConfiguration
fn default() -> IssueFieldOptionConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueFieldOptionConfiguration
impl<'de> Deserialize<'de> for IssueFieldOptionConfiguration
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 IssueFieldOptionConfiguration
impl PartialEq for IssueFieldOptionConfiguration
Source§fn eq(&self, other: &IssueFieldOptionConfiguration) -> bool
fn eq(&self, other: &IssueFieldOptionConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IssueFieldOptionConfiguration
Auto Trait Implementations§
impl Freeze for IssueFieldOptionConfiguration
impl RefUnwindSafe for IssueFieldOptionConfiguration
impl Send for IssueFieldOptionConfiguration
impl Sync for IssueFieldOptionConfiguration
impl Unpin for IssueFieldOptionConfiguration
impl UnwindSafe for IssueFieldOptionConfiguration
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