pub enum RealAssigneeType {
ProjectDefault,
ComponentLead,
ProjectLead,
Unassigned,
}
Expand description
The type of the assignee that is assigned to issues created with this component, when an assignee cannot be set from the assigneeType
. For example, assigneeType
is set to COMPONENT_LEAD
but no component lead is set. This property is set to one of the following values: * PROJECT_LEAD
when assigneeType
is PROJECT_LEAD
and the project lead has permission to be assigned issues in the project that the component is in. * COMPONENT_LEAD
when assignee
Type is COMPONENT_LEAD
and the component lead has permission to be assigned issues in the project that the component is in. * UNASSIGNED
when assigneeType
is UNASSIGNED
and Jira is configured to allow unassigned issues. * PROJECT_DEFAULT
when none of the preceding cases are true.
Variants§
Trait Implementations§
Source§impl Clone for RealAssigneeType
impl Clone for RealAssigneeType
Source§fn clone(&self) -> RealAssigneeType
fn clone(&self) -> RealAssigneeType
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 RealAssigneeType
impl Debug for RealAssigneeType
Source§impl Default for RealAssigneeType
impl Default for RealAssigneeType
Source§fn default() -> RealAssigneeType
fn default() -> RealAssigneeType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RealAssigneeType
impl<'de> Deserialize<'de> for RealAssigneeType
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 Hash for RealAssigneeType
impl Hash for RealAssigneeType
Source§impl Ord for RealAssigneeType
impl Ord for RealAssigneeType
Source§fn cmp(&self, other: &RealAssigneeType) -> Ordering
fn cmp(&self, other: &RealAssigneeType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RealAssigneeType
impl PartialEq for RealAssigneeType
Source§impl PartialOrd for RealAssigneeType
impl PartialOrd for RealAssigneeType
Source§impl Serialize for RealAssigneeType
impl Serialize for RealAssigneeType
impl Copy for RealAssigneeType
impl Eq for RealAssigneeType
impl StructuralPartialEq for RealAssigneeType
Auto Trait Implementations§
impl Freeze for RealAssigneeType
impl RefUnwindSafe for RealAssigneeType
impl Send for RealAssigneeType
impl Sync for RealAssigneeType
impl Unpin for RealAssigneeType
impl UnwindSafe for RealAssigneeType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.