Struct v_common_module::veda_backend::Backend[][src]

pub struct Backend {
    pub storage: VStorage,
    pub fts: FTClient,
    pub api: APIClient,
}

Fields

storage: VStoragefts: FTClientapi: APIClient

Implementations

impl Backend[src]

pub fn create(storage_mode: StorageMode, use_remote_storage: bool) -> Self[src]

pub fn get_sys_ticket_id(&mut self) -> Result<String, i32>[src]

pub fn get_individual_h(&mut self, uri: &str) -> Option<Box<Individual>>[src]

pub fn get_individual_s(&mut self, uri: &str) -> Option<Individual>[src]

pub fn get_individual<'a>(
    &mut self,
    uri: &str,
    iraw: &'a mut Individual
) -> Option<&'a mut Individual>
[src]

pub fn get_ticket_from_db(&mut self, id: &str) -> Ticket[src]

Trait Implementations

impl Default for Backend[src]

Auto Trait Implementations

impl !RefUnwindSafe for Backend

impl Send for Backend

impl Sync for Backend

impl Unpin for Backend

impl !UnwindSafe for Backend

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> Pointable for T

type Init = T

The type for initializers.

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>,