pub struct ProjectMilestoneMoveInput {
pub project_id: Option<String>,
pub new_issue_team_id: Option<String>,
pub add_issue_team_to_project: Option<bool>,
pub undo_issue_team_ids: Option<Vec<Box<ProjectMilestoneMoveIssueToTeamInput>>>,
pub undo_project_team_ids: Option<Box<ProjectMilestoneMoveProjectTeamsInput>>,
}Fields§
§project_id: Option<String>§new_issue_team_id: Option<String>§add_issue_team_to_project: Option<bool>§undo_issue_team_ids: Option<Vec<Box<ProjectMilestoneMoveIssueToTeamInput>>>§undo_project_team_ids: Option<Box<ProjectMilestoneMoveProjectTeamsInput>>Trait Implementations§
Source§impl Clone for ProjectMilestoneMoveInput
impl Clone for ProjectMilestoneMoveInput
Source§fn clone(&self) -> ProjectMilestoneMoveInput
fn clone(&self) -> ProjectMilestoneMoveInput
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 ProjectMilestoneMoveInput
impl Debug for ProjectMilestoneMoveInput
Source§impl Default for ProjectMilestoneMoveInput
impl Default for ProjectMilestoneMoveInput
Source§fn default() -> ProjectMilestoneMoveInput
fn default() -> ProjectMilestoneMoveInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectMilestoneMoveInput
impl<'de> Deserialize<'de> for ProjectMilestoneMoveInput
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 ProjectMilestoneMoveInput
impl RefUnwindSafe for ProjectMilestoneMoveInput
impl Send for ProjectMilestoneMoveInput
impl Sync for ProjectMilestoneMoveInput
impl Unpin for ProjectMilestoneMoveInput
impl UnwindSafe for ProjectMilestoneMoveInput
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