pub struct ProjectRelationUpdateInput {
pub type: Option<String>,
pub project_id: Option<String>,
pub project_milestone_id: Option<String>,
pub anchor_type: Option<String>,
pub related_project_id: Option<String>,
pub related_project_milestone_id: Option<String>,
pub related_anchor_type: Option<String>,
}Fields§
§type: Option<String>The type of relation of the project to the related project.
project_id: Option<String>The identifier of the project that is related to another project.
project_milestone_id: Option<String>The identifier of the project milestone.
anchor_type: Option<String>The type of the anchor for the project.
The identifier of the related project.
The identifier of the related project milestone.
The type of the anchor for the related project.
Trait Implementations§
Source§impl Clone for ProjectRelationUpdateInput
impl Clone for ProjectRelationUpdateInput
Source§fn clone(&self) -> ProjectRelationUpdateInput
fn clone(&self) -> ProjectRelationUpdateInput
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 ProjectRelationUpdateInput
impl Debug for ProjectRelationUpdateInput
Source§impl Default for ProjectRelationUpdateInput
impl Default for ProjectRelationUpdateInput
Source§fn default() -> ProjectRelationUpdateInput
fn default() -> ProjectRelationUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectRelationUpdateInput
impl<'de> Deserialize<'de> for ProjectRelationUpdateInput
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 ProjectRelationUpdateInput
impl RefUnwindSafe for ProjectRelationUpdateInput
impl Send for ProjectRelationUpdateInput
impl Sync for ProjectRelationUpdateInput
impl Unpin for ProjectRelationUpdateInput
impl UnwindSafe for ProjectRelationUpdateInput
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