pub struct GraphFilters {
pub ontology_iri: Option<String>,
pub hide_deprecated: bool,
pub entity_kinds: Vec<String>,
pub namespaces: Vec<String>,
pub relationship_kinds: Vec<String>,
pub search_text: Option<String>,
}Fields§
§ontology_iri: Option<String>§hide_deprecated: bool§entity_kinds: Vec<String>§namespaces: Vec<String>§relationship_kinds: Vec<String>§search_text: Option<String>Trait Implementations§
Source§impl Clone for GraphFilters
impl Clone for GraphFilters
Source§fn clone(&self) -> GraphFilters
fn clone(&self) -> GraphFilters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GraphFilters
impl Debug for GraphFilters
Source§impl Default for GraphFilters
impl Default for GraphFilters
Source§fn default() -> GraphFilters
fn default() -> GraphFilters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphFilters
impl<'de> Deserialize<'de> for GraphFilters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GraphFilters
impl RefUnwindSafe for GraphFilters
impl Send for GraphFilters
impl Sync for GraphFilters
impl Unpin for GraphFilters
impl UnsafeUnpin for GraphFilters
impl UnwindSafe for GraphFilters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more