pub struct IssueUpdateInput {
pub title: Option<String>,
pub description: Option<String>,
pub priority: Option<i32>,
pub assignee_id: Option<String>,
pub state_id: Option<String>,
pub project_id: Option<String>,
pub parent_id: Option<String>,
pub label_ids: Option<Vec<String>>,
pub added_label_ids: Option<Vec<String>>,
pub removed_label_ids: Option<Vec<String>>,
pub due_date: Option<TimelessDate>,
}Fields§
§title: Option<String>§description: Option<String>§priority: Option<i32>§assignee_id: Option<String>§state_id: Option<String>§project_id: Option<String>§parent_id: Option<String>§label_ids: Option<Vec<String>>§added_label_ids: Option<Vec<String>>§removed_label_ids: Option<Vec<String>>§due_date: Option<TimelessDate>Trait Implementations§
Source§impl Clone for IssueUpdateInput
impl Clone for IssueUpdateInput
Source§fn clone(&self) -> IssueUpdateInput
fn clone(&self) -> IssueUpdateInput
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 IssueUpdateInput
impl Debug for IssueUpdateInput
Source§impl Default for IssueUpdateInput
impl Default for IssueUpdateInput
Source§fn default() -> IssueUpdateInput
fn default() -> IssueUpdateInput
Returns the “default value” for a type. Read more
Source§impl InputObject for IssueUpdateInput
impl InputObject for IssueUpdateInput
Source§type SchemaType = IssueUpdateInput
type SchemaType = IssueUpdateInput
The input object in the schema that this type represents.
Source§impl Serialize for IssueUpdateInput
impl Serialize for IssueUpdateInput
Source§impl Variable for IssueUpdateInput
impl Variable for IssueUpdateInput
const TYPE: VariableType
impl CoercesTo<IssueUpdateInput> for IssueUpdateInput
impl CoercesTo<Option<IssueUpdateInput>> for IssueUpdateInput
impl CoercesTo<Option<Option<IssueUpdateInput>>> for IssueUpdateInput
impl CoercesTo<Option<Vec<IssueUpdateInput>>> for IssueUpdateInput
impl CoercesTo<Option<Vec<Option<IssueUpdateInput>>>> for IssueUpdateInput
impl CoercesTo<Vec<IssueUpdateInput>> for IssueUpdateInput
impl CoercesTo<Vec<Vec<IssueUpdateInput>>> for IssueUpdateInput
Auto Trait Implementations§
impl Freeze for IssueUpdateInput
impl RefUnwindSafe for IssueUpdateInput
impl Send for IssueUpdateInput
impl Sync for IssueUpdateInput
impl Unpin for IssueUpdateInput
impl UnsafeUnpin for IssueUpdateInput
impl UnwindSafe for IssueUpdateInput
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