pub struct XPendingResult {
pub num_pending_messages: usize,
pub smallest_id: String,
pub greatest_id: String,
pub consumers: Vec<XPendingConsumer>,
}
Expand description
Result for the xpending
command
Fields§
§num_pending_messages: usize
§smallest_id: String
§greatest_id: String
§consumers: Vec<XPendingConsumer>
Trait Implementations§
Source§impl FromValue for XPendingResult
impl FromValue for XPendingResult
Auto Trait Implementations§
impl Freeze for XPendingResult
impl RefUnwindSafe for XPendingResult
impl Send for XPendingResult
impl Sync for XPendingResult
impl Unpin for XPendingResult
impl UnwindSafe for XPendingResult
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