Enum redis_driver::resp::BulkString
source · [−]Variants
Str(&'static str)
String(String)
Binary(Vec<u8>)
Integer(i64)
Nil
Implementations
Trait Implementations
sourceimpl Debug for BulkString
impl Debug for BulkString
sourceimpl Default for BulkString
impl Default for BulkString
Initialize a Bulksring as BulkString::Nil
sourceimpl From<&'static str> for BulkString
impl From<&'static str> for BulkString
sourceimpl From<BulkString> for Result<String>
impl From<BulkString> for Result<String>
sourcefn from(bs: BulkString) -> Self
fn from(bs: BulkString) -> Self
Converts to this type from the input type.
sourceimpl From<String> for BulkString
impl From<String> for BulkString
sourceimpl From<f32> for BulkString
impl From<f32> for BulkString
sourceimpl From<f64> for BulkString
impl From<f64> for BulkString
sourceimpl From<i32> for BulkString
impl From<i32> for BulkString
sourceimpl From<i64> for BulkString
impl From<i64> for BulkString
sourceimpl From<isize> for BulkString
impl From<isize> for BulkString
sourceimpl From<u32> for BulkString
impl From<u32> for BulkString
sourceimpl From<u64> for BulkString
impl From<u64> for BulkString
sourceimpl From<usize> for BulkString
impl From<usize> for BulkString
Auto Trait Implementations
impl RefUnwindSafe for BulkString
impl Send for BulkString
impl Sync for BulkString
impl Unpin for BulkString
impl UnwindSafe for BulkString
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more