pub struct Component;
Trait Implementations§
Source§impl HasField<__typename> for Component
impl HasField<__typename> for Component
Source§impl HasField<behaviours> for Component
impl HasField<behaviours> for Component
Source§type Type = Vec<ComponentBehaviour>
type Type = Vec<ComponentBehaviour>
The schema marker type of this field.
Source§impl HasField<countExtensions> for Component
impl HasField<countExtensions> for Component
Source§impl HasField<countProperties> for Component
impl HasField<countProperties> for Component
Source§impl HasField<description> for Component
impl HasField<description> for Component
Source§impl HasField<entityTypes> for Component
impl HasField<entityTypes> for Component
Source§type Type = Vec<EntityType>
type Type = Vec<EntityType>
The schema marker type of this field.
Source§impl HasField<extensions> for Component
impl HasField<extensions> for Component
Source§impl HasField<inboundOf> for Component
impl HasField<inboundOf> for Component
Source§type Type = Vec<RelationType>
type Type = Vec<RelationType>
The schema marker type of this field.
Source§impl HasField<jsonSchema> for Component
impl HasField<jsonSchema> for Component
Source§impl HasField<jsonSchemaId> for Component
impl HasField<jsonSchemaId> for Component
Source§impl HasField<outboundOf> for Component
impl HasField<outboundOf> for Component
Source§type Type = Vec<RelationType>
type Type = Vec<RelationType>
The schema marker type of this field.
Source§impl HasField<properties> for Component
impl HasField<properties> for Component
Source§type Type = Vec<PropertyType>
type Type = Vec<PropertyType>
The schema marker type of this field.
Source§impl HasField<relationTypes> for Component
impl HasField<relationTypes> for Component
Source§type Type = Vec<RelationType>
type Type = Vec<RelationType>
The schema marker type of this field.
Auto Trait Implementations§
impl Freeze for Component
impl RefUnwindSafe for Component
impl Send for Component
impl Sync for Component
impl Unpin for Component
impl UnwindSafe for Component
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