pub struct QueueSnapshotEntry {
pub name: String,
pub category: String,
pub depth: u64,
pub high_water: u64,
pub capacity: u64,
pub fill_percent: u64,
}Fields§
§name: String§category: String§depth: u64§high_water: u64§capacity: u64§fill_percent: u64Trait Implementations§
Source§impl Clone for QueueSnapshotEntry
impl Clone for QueueSnapshotEntry
Source§fn clone(&self) -> QueueSnapshotEntry
fn clone(&self) -> QueueSnapshotEntry
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 QueueSnapshotEntry
impl Debug for QueueSnapshotEntry
Source§impl<'de> Deserialize<'de> for QueueSnapshotEntry
impl<'de> Deserialize<'de> for QueueSnapshotEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for QueueSnapshotEntry
Source§impl Hash for QueueSnapshotEntry
impl Hash for QueueSnapshotEntry
Source§impl PartialEq for QueueSnapshotEntry
impl PartialEq for QueueSnapshotEntry
Source§fn eq(&self, other: &QueueSnapshotEntry) -> bool
fn eq(&self, other: &QueueSnapshotEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for QueueSnapshotEntry
impl Serialize for QueueSnapshotEntry
impl StructuralPartialEq for QueueSnapshotEntry
Auto Trait Implementations§
impl Freeze for QueueSnapshotEntry
impl RefUnwindSafe for QueueSnapshotEntry
impl Send for QueueSnapshotEntry
impl Sync for QueueSnapshotEntry
impl Unpin for QueueSnapshotEntry
impl UnsafeUnpin for QueueSnapshotEntry
impl UnwindSafe for QueueSnapshotEntry
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