[][src]Struct terminus_store::storage::BaseLayerMaps

pub struct BaseLayerMaps {
    pub node_dictionary_maps: DictionaryMaps,
    pub predicate_dictionary_maps: DictionaryMaps,
    pub value_dictionary_maps: DictionaryMaps,
    pub subjects_map: Option<Bytes>,
    pub objects_map: Option<Bytes>,
    pub s_p_adjacency_list_maps: AdjacencyListMaps,
    pub sp_o_adjacency_list_maps: AdjacencyListMaps,
    pub o_ps_adjacency_list_maps: AdjacencyListMaps,
    pub predicate_wavelet_tree_maps: BitIndexMaps,
}

Fields

node_dictionary_maps: DictionaryMapspredicate_dictionary_maps: DictionaryMapsvalue_dictionary_maps: DictionaryMapssubjects_map: Option<Bytes>objects_map: Option<Bytes>s_p_adjacency_list_maps: AdjacencyListMapssp_o_adjacency_list_maps: AdjacencyListMapso_ps_adjacency_list_maps: AdjacencyListMapspredicate_wavelet_tree_maps: BitIndexMaps

Trait Implementations

impl Clone for BaseLayerMaps[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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