Struct redis_module::RedisString[][src]

pub struct RedisString {
    pub inner: *mut RedisModuleString,
    // some fields omitted
}

Fields

inner: *mut RedisModuleString

Implementations

impl RedisString[src]

pub fn new(
    ctx: *mut RedisModuleCtx,
    inner: *mut RedisModuleString
) -> RedisString
[src]

pub fn create(ctx: *mut RedisModuleCtx, s: &str) -> RedisString[src]

pub fn from_ptr<'a>(ptr: *const RedisModuleString) -> Result<&'a str, Utf8Error>[src]

pub fn append(&mut self, s: &str) -> Status[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn try_as_str(&self) -> Result<&str, Utf8Error>[src]

pub fn into_string_lossy(self) -> String[src]

Performs lossy conversion of a RedisString into an owned `String. This conversion will replace any invalid UTF-8 sequences with U+FFFD REPLACEMENT CHARACTER, which looks like this: �.

Trait Implementations

impl Debug for RedisString[src]

impl Drop for RedisString[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.