pub struct ConceptQuery {
pub description: String,
pub constraints: Vec<ConceptConstraint>,
}Expand description
Query for navigating to a concept.
Fields§
§description: StringNatural language description.
constraints: Vec<ConceptConstraint>Optional constraints.
Trait Implementations§
Source§impl Clone for ConceptQuery
impl Clone for ConceptQuery
Source§fn clone(&self) -> ConceptQuery
fn clone(&self) -> ConceptQuery
Returns a duplicate of the value. Read more
1.0.0 · 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 ConceptQuery
impl Debug for ConceptQuery
Source§impl<'de> Deserialize<'de> for ConceptQuery
impl<'de> Deserialize<'de> for ConceptQuery
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 ConceptQuery
impl RefUnwindSafe for ConceptQuery
impl Send for ConceptQuery
impl Sync for ConceptQuery
impl Unpin for ConceptQuery
impl UnsafeUnpin for ConceptQuery
impl UnwindSafe for ConceptQuery
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