pub struct ResolvedEntityType {
pub kind: EntityKind,
pub entity_type: Option<String>,
}Expand description
Resolved output of EntityTypeRegistry::resolve.
Fields§
§kind: EntityKindThe canonical EntityKind for the resolved combination.
entity_type: Option<String>The canonical type name to store, or None when no entity_type was
supplied and none was inferred.
Trait Implementations§
Source§impl Clone for ResolvedEntityType
impl Clone for ResolvedEntityType
Source§fn clone(&self) -> ResolvedEntityType
fn clone(&self) -> ResolvedEntityType
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 ResolvedEntityType
impl Debug for ResolvedEntityType
impl Eq for ResolvedEntityType
Source§impl PartialEq for ResolvedEntityType
impl PartialEq for ResolvedEntityType
impl StructuralPartialEq for ResolvedEntityType
Auto Trait Implementations§
impl Freeze for ResolvedEntityType
impl RefUnwindSafe for ResolvedEntityType
impl Send for ResolvedEntityType
impl Sync for ResolvedEntityType
impl Unpin for ResolvedEntityType
impl UnsafeUnpin for ResolvedEntityType
impl UnwindSafe for ResolvedEntityType
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