pub struct ConceptMap {
pub concept: String,
pub units: Vec<ConceptUnit>,
}Expand description
Result of a concept mapping query.
Fields§
§concept: StringThe queried concept.
units: Vec<ConceptUnit>Units related to this concept.
Trait Implementations§
Source§impl Clone for ConceptMap
impl Clone for ConceptMap
Source§fn clone(&self) -> ConceptMap
fn clone(&self) -> ConceptMap
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 moreAuto Trait Implementations§
impl Freeze for ConceptMap
impl RefUnwindSafe for ConceptMap
impl Send for ConceptMap
impl Sync for ConceptMap
impl Unpin for ConceptMap
impl UnsafeUnpin for ConceptMap
impl UnwindSafe for ConceptMap
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