pub struct EntityTypeDescription { /* private fields */ }
Expand description

Struct which carries enough information that it can impl Core’s EntityTypeDescription

Implementations§

source§

impl EntityTypeDescription

source

pub fn new(schema: &ValidatorSchema, type_name: &Name) -> Option<Self>

Create a description of the given type in the given schema. Returns None if the given type is not in the given schema.

Trait Implementations§

source§

impl EntityTypeDescription for EntityTypeDescription

source§

fn entity_type(&self) -> EntityType

Get the EntityType this EntityTypeDescription is describing
source§

fn attr_type(&self, attr: &str) -> Option<SchemaType>

Do entities of this type have the given attribute, and if so, what type? Read more
source§

fn required_attrs<'s>(&'s self) -> Box<dyn Iterator<Item = SmolStr> + 's>

Get the names of all the required attributes for this entity type.
source§

fn allowed_parent_types(&self) -> Arc<HashSet<EntityType>>

Get the entity types which are allowed to be parents of this entity type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.