1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use crate::{
    core::entities::{graph::tgraph::InternalGraph, LayerIds},
    db::api::{storage::nodes::node_ref::NodeStorageRef, view::internal::NodeFilterOps},
};

impl NodeFilterOps for InternalGraph {
    #[inline]
    fn node_list_trusted(&self) -> bool {
        true
    }
    #[inline]
    fn nodes_filtered(&self) -> bool {
        false
    }

    #[inline]
    fn filter_node(&self, _node: NodeStorageRef, _layer_ids: &LayerIds) -> bool {
        true
    }
}