Enum gitlab::api::issues::IssueMilestone
source · pub enum IssueMilestone<'a> {
None,
Any,
Upcoming,
Started,
Named(Cow<'a, str>),
}Expand description
Filters available for issue milestones.
Variants§
None
Issues without any milestone.
Any
Issues with any milestone.
Upcoming
Issues with milestones with upcoming due dates.
Started
Issues with milestones that have started.
Named(Cow<'a, str>)
Issues with a specific milestone.
Trait Implementations§
source§impl<'a> Clone for IssueMilestone<'a>
impl<'a> Clone for IssueMilestone<'a>
source§fn clone(&self) -> IssueMilestone<'a>
fn clone(&self) -> IssueMilestone<'a>
Returns a copy 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<'a> Debug for IssueMilestone<'a>
impl<'a> Debug for IssueMilestone<'a>
source§impl<'a, 'b: 'a> ParamValue<'a> for &'b IssueMilestone<'a>
impl<'a, 'b: 'a> ParamValue<'a> for &'b IssueMilestone<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for IssueMilestone<'a>
impl<'a> Send for IssueMilestone<'a>
impl<'a> Sync for IssueMilestone<'a>
impl<'a> Unpin for IssueMilestone<'a>
impl<'a> UnwindSafe for IssueMilestone<'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