pub struct EntityType;
Trait Implementations§
Source§impl HasField<__typename> for EntityType
impl HasField<__typename> for EntityType
Source§impl HasField<behaviours> for EntityType
impl HasField<behaviours> for EntityType
Source§type Type = Vec<EntityBehaviour>
type Type = Vec<EntityBehaviour>
The schema marker type of this field.
Source§impl HasField<components> for EntityType
impl HasField<components> for EntityType
Source§impl HasField<countComponents> for EntityType
impl HasField<countComponents> for EntityType
Source§impl HasField<countExtensions> for EntityType
impl HasField<countExtensions> for EntityType
Source§impl HasField<countInboundRelations> for EntityType
impl HasField<countInboundRelations> for EntityType
Source§impl HasField<countOutboundRelations> for EntityType
impl HasField<countOutboundRelations> for EntityType
Source§impl HasField<countProperties> for EntityType
impl HasField<countProperties> for EntityType
Source§impl HasField<description> for EntityType
impl HasField<description> for EntityType
Source§impl HasField<extensions> for EntityType
impl HasField<extensions> for EntityType
Source§impl HasField<inboundRelations> for EntityType
impl HasField<inboundRelations> for EntityType
Source§type Type = Vec<RelationType>
type Type = Vec<RelationType>
The schema marker type of this field.
Source§impl HasField<isValid> for EntityType
impl HasField<isValid> for EntityType
Source§impl HasField<jsonSchema> for EntityType
impl HasField<jsonSchema> for EntityType
Source§impl HasField<jsonSchemaId> for EntityType
impl HasField<jsonSchemaId> for EntityType
Source§impl HasField<name> for EntityType
impl HasField<name> for EntityType
Source§impl HasField<namespace> for EntityType
impl HasField<namespace> for EntityType
Source§impl HasField<outboundRelations> for EntityType
impl HasField<outboundRelations> for EntityType
Source§type Type = Vec<RelationType>
type Type = Vec<RelationType>
The schema marker type of this field.
Source§impl HasField<properties> for EntityType
impl HasField<properties> for EntityType
Source§type Type = Vec<PropertyType>
type Type = Vec<PropertyType>
The schema marker type of this field.
Auto Trait Implementations§
impl Freeze for EntityType
impl RefUnwindSafe for EntityType
impl Send for EntityType
impl Sync for EntityType
impl Unpin for EntityType
impl UnwindSafe for EntityType
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more