pub enum ActorRole {
Requester,
Assignee,
Submitter,
Follower,
}Expand description
What capacity a person is involved in. Support/ITSM platforms distinguish
requester from assignee from submitter; dev trackers mostly use Assignee.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ActorRole
impl<'de> Deserialize<'de> for ActorRole
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 Copy for ActorRole
impl Eq for ActorRole
impl StructuralPartialEq for ActorRole
Auto Trait Implementations§
impl Freeze for ActorRole
impl RefUnwindSafe for ActorRole
impl Send for ActorRole
impl Sync for ActorRole
impl Unpin for ActorRole
impl UnsafeUnpin for ActorRole
impl UnwindSafe for ActorRole
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