Enum gitlab::api::issues::IssueWeight
source · pub enum IssueWeight {
Any,
None,
Weight(u64),
}Expand description
Filter issues by weight.
Variants§
Any
Filter issues with any weight.
None
Filter issues with no weight assigned.
Weight(u64)
Filter issues with a specific weight.
Trait Implementations§
source§impl Clone for IssueWeight
impl Clone for IssueWeight
source§fn clone(&self) -> IssueWeight
fn clone(&self) -> IssueWeight
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 Debug for IssueWeight
impl Debug for IssueWeight
source§impl ParamValue<'static> for IssueWeight
impl ParamValue<'static> for IssueWeight
source§impl PartialEq<IssueWeight> for IssueWeight
impl PartialEq<IssueWeight> for IssueWeight
source§fn eq(&self, other: &IssueWeight) -> bool
fn eq(&self, other: &IssueWeight) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for IssueWeight
impl Eq for IssueWeight
impl StructuralEq for IssueWeight
impl StructuralPartialEq for IssueWeight
Auto Trait Implementations§
impl RefUnwindSafe for IssueWeight
impl Send for IssueWeight
impl Sync for IssueWeight
impl Unpin for IssueWeight
impl UnwindSafe for IssueWeight
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.