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