pub struct ProjectMilestoneMoveIssueToTeam {
pub issue_id: Option<String>,
pub team_id: Option<String>,
}Fields§
§issue_id: Option<String>The issue id in this relationship, you can use * as wildcard if all issues are being moved to the same team
team_id: Option<String>The team id in this relationship
Trait Implementations§
Source§impl Clone for ProjectMilestoneMoveIssueToTeam
impl Clone for ProjectMilestoneMoveIssueToTeam
Source§fn clone(&self) -> ProjectMilestoneMoveIssueToTeam
fn clone(&self) -> ProjectMilestoneMoveIssueToTeam
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 ProjectMilestoneMoveIssueToTeam
impl Default for ProjectMilestoneMoveIssueToTeam
Source§fn default() -> ProjectMilestoneMoveIssueToTeam
fn default() -> ProjectMilestoneMoveIssueToTeam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectMilestoneMoveIssueToTeam
impl<'de> Deserialize<'de> for ProjectMilestoneMoveIssueToTeam
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 ProjectMilestoneMoveIssueToTeam
impl RefUnwindSafe for ProjectMilestoneMoveIssueToTeam
impl Send for ProjectMilestoneMoveIssueToTeam
impl Sync for ProjectMilestoneMoveIssueToTeam
impl Unpin for ProjectMilestoneMoveIssueToTeam
impl UnwindSafe for ProjectMilestoneMoveIssueToTeam
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