pub struct CreateMilestone<'a> {
pub title: &'a str,
pub due_on: &'a str,
pub description: Option<&'a str>,
pub state: Option<&'a str>,
}Fields§
§title: &'a str§due_on: &'a strGitee requires due_on on create (400 without it). Accepts YYYY-MM-DD.
description: Option<&'a str>§state: Option<&'a str>Auto Trait Implementations§
impl<'a> Freeze for CreateMilestone<'a>
impl<'a> RefUnwindSafe for CreateMilestone<'a>
impl<'a> Send for CreateMilestone<'a>
impl<'a> Sync for CreateMilestone<'a>
impl<'a> Unpin for CreateMilestone<'a>
impl<'a> UnsafeUnpin for CreateMilestone<'a>
impl<'a> UnwindSafe for CreateMilestone<'a>
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