pub struct IssueFieldOptionScopeBean {
pub projects: Option<Vec<i64>>,
pub projects2: Option<Vec<ProjectScopeBean>>,
pub global: Option<Box<GlobalScopeBean>>,
}
Fields§
§projects: Option<Vec<i64>>
DEPRECATED
projects2: Option<Vec<ProjectScopeBean>>
Defines the projects in which the option is available and the behavior of the option within each project. Specify one object per project. The behavior of the option in a project context overrides the behavior in the global context.
global: Option<Box<GlobalScopeBean>>
Defines the behavior of the option within the global context. If this property is set, even if set to an empty object, then the option is available in all projects.
Implementations§
Source§impl IssueFieldOptionScopeBean
impl IssueFieldOptionScopeBean
pub fn new() -> IssueFieldOptionScopeBean
Trait Implementations§
Source§impl Clone for IssueFieldOptionScopeBean
impl Clone for IssueFieldOptionScopeBean
Source§fn clone(&self) -> IssueFieldOptionScopeBean
fn clone(&self) -> IssueFieldOptionScopeBean
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 IssueFieldOptionScopeBean
impl Debug for IssueFieldOptionScopeBean
Source§impl Default for IssueFieldOptionScopeBean
impl Default for IssueFieldOptionScopeBean
Source§fn default() -> IssueFieldOptionScopeBean
fn default() -> IssueFieldOptionScopeBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueFieldOptionScopeBean
impl<'de> Deserialize<'de> for IssueFieldOptionScopeBean
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 IssueFieldOptionScopeBean
Auto Trait Implementations§
impl Freeze for IssueFieldOptionScopeBean
impl RefUnwindSafe for IssueFieldOptionScopeBean
impl Send for IssueFieldOptionScopeBean
impl Sync for IssueFieldOptionScopeBean
impl Unpin for IssueFieldOptionScopeBean
impl UnwindSafe for IssueFieldOptionScopeBean
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