pub struct TicketCounts {
pub ready: u64,
pub held: u64,
pub blocked: u64,
pub claimed: u64,
pub merged: u64,
pub failed: u64,
pub needs_review: u64,
}Fields§
§ready: u64§held: u64§blocked: u64§claimed: u64§merged: u64§failed: u64§needs_review: u64Trait Implementations§
Source§impl Clone for TicketCounts
impl Clone for TicketCounts
Source§fn clone(&self) -> TicketCounts
fn clone(&self) -> TicketCounts
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 moreimpl Copy for TicketCounts
Source§impl Debug for TicketCounts
impl Debug for TicketCounts
Source§impl Default for TicketCounts
impl Default for TicketCounts
Source§fn default() -> TicketCounts
fn default() -> TicketCounts
Returns the “default value” for a type. Read more
impl Eq for TicketCounts
Source§impl PartialEq for TicketCounts
impl PartialEq for TicketCounts
impl StructuralPartialEq for TicketCounts
Auto Trait Implementations§
impl Freeze for TicketCounts
impl RefUnwindSafe for TicketCounts
impl Send for TicketCounts
impl Sync for TicketCounts
impl Unpin for TicketCounts
impl UnsafeUnpin for TicketCounts
impl UnwindSafe for TicketCounts
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.