pub struct TriageResponsibilityCreateInput {
pub id: Option<String>,
pub team_id: Option<String>,
pub action: Option<String>,
pub manual_selection: Option<Box<TriageResponsibilityManualSelectionInput>>,
pub time_schedule_id: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
team_id: Option<String>The identifier of the team associated with the triage responsibility.
action: Option<String>The action to take when an issue is added to triage.
manual_selection: Option<Box<TriageResponsibilityManualSelectionInput>>The manual selection of users responsible for triage.
time_schedule_id: Option<String>The identifier of the time schedule used for scheduling triage responsibility
Trait Implementations§
Source§impl Clone for TriageResponsibilityCreateInput
impl Clone for TriageResponsibilityCreateInput
Source§fn clone(&self) -> TriageResponsibilityCreateInput
fn clone(&self) -> TriageResponsibilityCreateInput
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 Default for TriageResponsibilityCreateInput
impl Default for TriageResponsibilityCreateInput
Source§fn default() -> TriageResponsibilityCreateInput
fn default() -> TriageResponsibilityCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TriageResponsibilityCreateInput
impl<'de> Deserialize<'de> for TriageResponsibilityCreateInput
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
Auto Trait Implementations§
impl Freeze for TriageResponsibilityCreateInput
impl RefUnwindSafe for TriageResponsibilityCreateInput
impl Send for TriageResponsibilityCreateInput
impl Sync for TriageResponsibilityCreateInput
impl Unpin for TriageResponsibilityCreateInput
impl UnwindSafe for TriageResponsibilityCreateInput
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