Trait raphtory::db::api::properties::internal::TemporalPropertiesOps

source ·
pub trait TemporalPropertiesOps {
    // Required methods
    fn get_temporal_prop_id(&self, name: &str) -> Option<usize>;
    fn get_temporal_prop_name(&self, id: usize) -> ArcStr;
    fn temporal_prop_ids(&self) -> Box<dyn Iterator<Item = usize> + '_>;

    // Provided method
    fn temporal_prop_keys(&self) -> Box<dyn Iterator<Item = ArcStr> + '_> { ... }
}

Required Methods§

source

fn get_temporal_prop_id(&self, name: &str) -> Option<usize>

source

fn get_temporal_prop_name(&self, id: usize) -> ArcStr

source

fn temporal_prop_ids(&self) -> Box<dyn Iterator<Item = usize> + '_>

Provided Methods§

source

fn temporal_prop_keys(&self) -> Box<dyn Iterator<Item = ArcStr> + '_>

Implementors§