pub enum AssigneeType {
PROJECTDEFAULT,
COMPONENTLEAD,
PROJECTLEAD,
UNASSIGNED,
}
Expand description
The nominal user type used to determine the assignee for issues created with this component. See realAssigneeType
for details on how the type of the user, and hence the user, assigned to issues is determined. Can take the following values: * PROJECT_LEAD
the assignee to any issues created with this component is nominally the lead for the project the component is in. * COMPONENT_LEAD
the assignee to any issues created with this component is nominally the lead for the component. * UNASSIGNED
an assignee is not set for issues created with this component. * PROJECT_DEFAULT
the assignee to any issues created with this component is nominally the default assignee for the project that the component is in. Default value: PROJECT_DEFAULT
. Optional when creating or updating a component.
Variants§
Trait Implementations§
Source§impl Clone for AssigneeType
impl Clone for AssigneeType
Source§fn clone(&self) -> AssigneeType
fn clone(&self) -> AssigneeType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for AssigneeType
impl Debug for AssigneeType
Source§impl Default for AssigneeType
impl Default for AssigneeType
Source§fn default() -> AssigneeType
fn default() -> AssigneeType
Source§impl<'de> Deserialize<'de> for AssigneeType
impl<'de> Deserialize<'de> for AssigneeType
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>,
Source§impl Hash for AssigneeType
impl Hash for AssigneeType
Source§impl Ord for AssigneeType
impl Ord for AssigneeType
Source§fn cmp(&self, other: &AssigneeType) -> Ordering
fn cmp(&self, other: &AssigneeType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for AssigneeType
impl PartialEq for AssigneeType
Source§impl PartialOrd for AssigneeType
impl PartialOrd for AssigneeType
Source§impl Serialize for AssigneeType
impl Serialize for AssigneeType
impl Copy for AssigneeType
impl Eq for AssigneeType
impl StructuralPartialEq for AssigneeType
Auto Trait Implementations§
impl Freeze for AssigneeType
impl RefUnwindSafe for AssigneeType
impl Send for AssigneeType
impl Sync for AssigneeType
impl Unpin for AssigneeType
impl UnwindSafe for AssigneeType
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
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
key
and return true
if they are equal.