Struct redis::streams::StreamClaimReply
source · [−]Expand description
Reply type used with xclaim
command.
Represents that ownership of the specified messages was changed.
Fields
ids: Vec<StreamId>
Complex data structure containing a payload for each ID in this array
Trait Implementations
sourceimpl Clone for StreamClaimReply
impl Clone for StreamClaimReply
sourcefn clone(&self) -> StreamClaimReply
fn clone(&self) -> StreamClaimReply
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StreamClaimReply
impl Debug for StreamClaimReply
sourceimpl Default for StreamClaimReply
impl Default for StreamClaimReply
sourcefn default() -> StreamClaimReply
fn default() -> StreamClaimReply
Returns the “default value” for a type. Read more
sourceimpl FromRedisValue for StreamClaimReply
impl FromRedisValue for StreamClaimReply
sourcefn from_redis_value(v: &Value) -> RedisResult<Self>
fn from_redis_value(v: &Value) -> RedisResult<Self>
Given a redis Value
this attempts to convert it into the given
destination type. If that fails because it’s not compatible an
appropriate error is generated. Read more
sourcefn from_redis_values(items: &[Value]) -> RedisResult<Vec<Self>>
fn from_redis_values(items: &[Value]) -> RedisResult<Vec<Self>>
Similar to from_redis_value
but constructs a vector of objects
from another vector of values. This primarily exists internally
to customize the behavior for vectors of tuples. Read more
Auto Trait Implementations
impl RefUnwindSafe for StreamClaimReply
impl Send for StreamClaimReply
impl Sync for StreamClaimReply
impl Unpin for StreamClaimReply
impl UnwindSafe for StreamClaimReply
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more