[][src]Struct terminus_store::storage::ChildLayerMaps

pub struct ChildLayerMaps {
    pub node_dictionary_maps: DictionaryMaps,
    pub predicate_dictionary_maps: DictionaryMaps,
    pub value_dictionary_maps: DictionaryMaps,
    pub pos_subjects_map: Bytes,
    pub pos_objects_map: Bytes,
    pub neg_subjects_map: Bytes,
    pub neg_objects_map: Bytes,
    pub pos_s_p_adjacency_list_maps: AdjacencyListMaps,
    pub pos_sp_o_adjacency_list_maps: AdjacencyListMaps,
    pub pos_o_ps_adjacency_list_maps: AdjacencyListMaps,
    pub neg_s_p_adjacency_list_maps: AdjacencyListMaps,
    pub neg_sp_o_adjacency_list_maps: AdjacencyListMaps,
    pub neg_o_ps_adjacency_list_maps: AdjacencyListMaps,
    pub pos_predicate_wavelet_tree_maps: BitIndexMaps,
    pub neg_predicate_wavelet_tree_maps: BitIndexMaps,
}

Fields

node_dictionary_maps: DictionaryMapspredicate_dictionary_maps: DictionaryMapsvalue_dictionary_maps: DictionaryMapspos_subjects_map: Bytespos_objects_map: Bytesneg_subjects_map: Bytesneg_objects_map: Bytespos_s_p_adjacency_list_maps: AdjacencyListMapspos_sp_o_adjacency_list_maps: AdjacencyListMapspos_o_ps_adjacency_list_maps: AdjacencyListMapsneg_s_p_adjacency_list_maps: AdjacencyListMapsneg_sp_o_adjacency_list_maps: AdjacencyListMapsneg_o_ps_adjacency_list_maps: AdjacencyListMapspos_predicate_wavelet_tree_maps: BitIndexMapsneg_predicate_wavelet_tree_maps: BitIndexMaps

Trait Implementations

impl Clone for ChildLayerMaps[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>,