Struct Cache

Source
pub struct Cache<T: MessageQueue, D: Database> { /* private fields */ }

Implementations§

Source§

impl<T: MessageQueue, D: Database> Cache<T, D>

Source

pub fn new(queue: T, db: D) -> Self

Source

pub async fn build_cache(&self) -> Result<(), String>

Source

pub async fn get_bytes(&self, key: &str) -> Result<Option<Vec<u8>>, ()>

Source

pub async fn get_number(&self, key: &str) -> Result<Option<i64>, ()>

Source

pub async fn incr_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn and_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn or_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn shift_right_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn shift_left_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn multi_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn divide_number(&self, key: &str, val: i64) -> Result<(), ()>

Source

pub async fn set_bytes(&self, key: &str, content: &[u8]) -> Result<(), ()>

Source

pub async fn del_key(&self, key: &str) -> Result<(), ()>

Source

pub async fn compare_and_swap( &self, key: &str, old: &[u8], new: &[u8], ) -> Result<bool, ()>

Source

pub async fn release(&self)

Auto Trait Implementations§

§

impl<T, D> !Freeze for Cache<T, D>

§

impl<T, D> !RefUnwindSafe for Cache<T, D>

§

impl<T, D> Send for Cache<T, D>

§

impl<T, D> Sync for Cache<T, D>

§

impl<T, D> Unpin for Cache<T, D>
where T: Unpin, D: Unpin,

§

impl<T, D> !UnwindSafe for Cache<T, D>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.