Struct v_common_storage::storage::VStorage[][src]

pub struct VStorage { /* fields omitted */ }

Implementations

impl VStorage[src]

pub fn none() -> VStorage[src]

pub fn new_remote(addr: &str) -> VStorage[src]

pub fn new_tt(tt_id: String, login: &str, pass: &str) -> VStorage[src]

pub fn new_lmdb(db_path: &str, mode: StorageMode) -> VStorage[src]

pub fn get_individual(&mut self, id: &str, iraw: &mut Individual) -> bool[src]

pub fn get_individual_from_db(
    &mut self,
    storage: StorageId,
    id: &str,
    iraw: &mut Individual
) -> bool
[src]

pub fn get_value(&mut self, storage: StorageId, id: &str) -> Option<String>[src]

pub fn get_raw_value(&mut self, storage: StorageId, id: &str) -> Vec<u8>[src]

pub fn put_kv(&mut self, storage: StorageId, key: &str, val: &str) -> bool[src]

pub fn put_kv_raw(
    &mut self,
    storage: StorageId,
    key: &str,
    val: Vec<u8>
) -> bool
[src]

pub fn remove(&mut self, storage: StorageId, key: &str) -> bool[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,