pub struct TriageResponsibility {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub action: Option<TriageResponsibilityAction>,
pub manual_selection: Option<Box<TriageResponsibilityManualSelection>>,
pub team: Option<Box<Team>>,
pub time_schedule: Option<Box<TimeSchedule>>,
pub current_user: Option<Box<User>>,
}Expand description
A team’s triage responsibility.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
action: Option<TriageResponsibilityAction>The action to take when an issue is added to triage.
manual_selection: Option<Box<TriageResponsibilityManualSelection>>Set of users used for triage responsibility.
team: Option<Box<Team>>The team to which the triage responsibility belongs to.
time_schedule: Option<Box<TimeSchedule>>The time schedule used for scheduling.
current_user: Option<Box<User>>The user currently responsible for triage.
Trait Implementations§
Source§impl Clone for TriageResponsibility
impl Clone for TriageResponsibility
Source§fn clone(&self) -> TriageResponsibility
fn clone(&self) -> TriageResponsibility
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 TriageResponsibility
impl Debug for TriageResponsibility
Source§impl Default for TriageResponsibility
impl Default for TriageResponsibility
Source§fn default() -> TriageResponsibility
fn default() -> TriageResponsibility
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TriageResponsibilitywhere
TriageResponsibility: Default,
impl<'de> Deserialize<'de> for TriageResponsibilitywhere
TriageResponsibility: Default,
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 GraphQLFields for TriageResponsibility
impl GraphQLFields for TriageResponsibility
Auto Trait Implementations§
impl Freeze for TriageResponsibility
impl RefUnwindSafe for TriageResponsibility
impl Send for TriageResponsibility
impl Sync for TriageResponsibility
impl Unpin for TriageResponsibility
impl UnwindSafe for TriageResponsibility
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