#[repr(transparent)]
pub struct RedisString<T: ?Sized>(pub T);
Expand description

Adapter type that serializes the contained value as a string.

Frequently, especially when sending commands, Redis will require data to be passed as a string, even when the underlying data is something like an integer. This type serializes its inner value as a string, and works on most primitive types. This will serialize unit enum variants and unit structs as their name.

Note that this type cannot distinguish a [u8] from other kinds of slices; be sure to use a container like serde_bytes::Bytes to ensure that these slices are serialized as bytes objects rather than sequences.

Example

use seredies::components::RedisString;
use serde::{Serialize, Deserialize};
use serde_test::{assert_tokens, assert_ser_tokens, Token};

assert_tokens(&RedisString("Hello"), &[Token::BorrowedStr("Hello")]);
assert_tokens(&RedisString(5i32), &[Token::Str("5")]);
assert_tokens(&RedisString(4.5), &[Token::Str("4.5")]);

let s: &RedisString<str> = RedisString::new_ref("string");
assert_tokens(&s, &[Token::BorrowedStr("string")]);

#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
struct UnitStruct;

#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
enum Data {
    Foo,
    Bar
}

assert_tokens(&RedisString(UnitStruct), &[Token::Str("UnitStruct")]);
assert_tokens(&RedisString(Data::Bar), &[Token::Str("Bar")]);

Tuple Fields§

§0: T

Implementations§

source§

impl<T: ?Sized> RedisString<T>

source

pub fn new_ref(value: &T) -> &Self

Convert a reference to some underlying type into a reference to a RedisString containing that object. This works even on unsized values and allows for the creation of things like &RedisString<str>.

Trait Implementations§

source§

impl<T: Clone + ?Sized> Clone for RedisString<T>

source§

fn clone(&self) -> RedisString<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + ?Sized> Debug for RedisString<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default + ?Sized> Default for RedisString<T>

source§

fn default() -> RedisString<T>

Returns the “default value” for a type. Read more
source§

impl<'de, T> Deserialize<'de> for &'de RedisString<T>where &'de T: Deserialize<'de>, T: ?Sized + 'de,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de, T> Deserialize<'de> for RedisString<T>where T: Deserialize<'de> + ?Sized,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T: PartialEq + ?Sized> PartialEq<RedisString<T>> for RedisString<T>

source§

fn eq(&self, other: &RedisString<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> Serialize for RedisString<T>where T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T: Copy + ?Sized> Copy for RedisString<T>

source§

impl<T: Eq + ?Sized> Eq for RedisString<T>

source§

impl<T: ?Sized> StructuralEq for RedisString<T>

source§

impl<T: ?Sized> StructuralPartialEq for RedisString<T>

Auto Trait Implementations§

§

impl<T: ?Sized> RefUnwindSafe for RedisString<T>where T: RefUnwindSafe,

§

impl<T: ?Sized> Send for RedisString<T>where T: Send,

§

impl<T: ?Sized> Sync for RedisString<T>where T: Sync,

§

impl<T: ?Sized> Unpin for RedisString<T>where T: Unpin,

§

impl<T: ?Sized> UnwindSafe for RedisString<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,