pub struct EntityDetail {
pub entity: Entity,
pub parents: Vec<String>,
pub children: Vec<String>,
pub axioms: Vec<EntityAxiomSummary>,
pub annotations: Vec<EntityAnnotationSummary>,
pub characteristics: PropertyCharacteristics,
pub source: Option<SourceHint>,
pub editable: bool,
pub document_path: Option<String>,
}Fields§
§entity: Entity§parents: Vec<String>§children: Vec<String>§axioms: Vec<EntityAxiomSummary>§annotations: Vec<EntityAnnotationSummary>§characteristics: PropertyCharacteristics§source: Option<SourceHint>§editable: bool§document_path: Option<String>Trait Implementations§
Source§impl Clone for EntityDetail
impl Clone for EntityDetail
Source§fn clone(&self) -> EntityDetail
fn clone(&self) -> EntityDetail
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 EntityDetail
impl Debug for EntityDetail
Auto Trait Implementations§
impl Freeze for EntityDetail
impl RefUnwindSafe for EntityDetail
impl Send for EntityDetail
impl Sync for EntityDetail
impl Unpin for EntityDetail
impl UnsafeUnpin for EntityDetail
impl UnwindSafe for EntityDetail
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