pub struct UpdateProjectMilestoneInput {
pub project_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub target_date: Option<String>,
pub sort_order: Option<f64>,
}Fields§
§project_id: Option<String>§name: Option<String>§description: Option<String>§target_date: Option<String>§sort_order: Option<f64>Trait Implementations§
Source§impl Clone for UpdateProjectMilestoneInput
impl Clone for UpdateProjectMilestoneInput
Source§fn clone(&self) -> UpdateProjectMilestoneInput
fn clone(&self) -> UpdateProjectMilestoneInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateProjectMilestoneInput
impl Debug for UpdateProjectMilestoneInput
Source§impl Default for UpdateProjectMilestoneInput
impl Default for UpdateProjectMilestoneInput
Source§fn default() -> UpdateProjectMilestoneInput
fn default() -> UpdateProjectMilestoneInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateProjectMilestoneInput
impl RefUnwindSafe for UpdateProjectMilestoneInput
impl Send for UpdateProjectMilestoneInput
impl Sync for UpdateProjectMilestoneInput
impl Unpin for UpdateProjectMilestoneInput
impl UnsafeUnpin for UpdateProjectMilestoneInput
impl UnwindSafe for UpdateProjectMilestoneInput
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