Struct async_graphql::types::connection::Edge   
source · [−]pub struct Edge<Cursor, Node, EdgeFields, Name = DefaultEdgeName> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType,  { /* private fields */ }Expand description
An edge in a connection.
Implementations
sourceimpl<Cursor, Node, EdgeFields, Name> Edge<Cursor, Node, EdgeFields, Name> where
    Name: EdgeNameType,
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType, 
 
impl<Cursor, Node, EdgeFields, Name> Edge<Cursor, Node, EdgeFields, Name> where
    Name: EdgeNameType,
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType, 
sourcepub fn with_additional_fields(
    cursor: Cursor, 
    node: Node, 
    additional_fields: EdgeFields
) -> Self
 
pub fn with_additional_fields(
    cursor: Cursor, 
    node: Node, 
    additional_fields: EdgeFields
) -> Self
Create a new edge, it can have some additional fields.
sourceimpl<Cursor, Node, Name> Edge<Cursor, Node, EmptyFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    Name: EdgeNameType, 
 
impl<Cursor, Node, Name> Edge<Cursor, Node, EmptyFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    Name: EdgeNameType, 
Trait Implementations
sourceimpl<Cursor, Node, EdgeFields, Name> ContainerType for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
 
impl<Cursor, Node, EdgeFields, Name> ContainerType for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
sourcefn resolve_field<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self, 
    ctx: &'life1 Context<'life2>
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 
 
fn resolve_field<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self, 
    ctx: &'life1 Context<'life2>
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 
Resolves a field value and outputs it as a json value
async_graphql::Value. Read more
sourcefn collect_all_fields<'a>(
    &'a self, 
    ctx: &ContextSelectionSet<'a>, 
    fields: &mut Fields<'a>
) -> ServerResult<()> where
    Self: Send + Sync, 
 
fn collect_all_fields<'a>(
    &'a self, 
    ctx: &ContextSelectionSet<'a>, 
    fields: &mut Fields<'a>
) -> ServerResult<()> where
    Self: Send + Sync, 
Collect all the fields of the container that are queried in the selection set. Read more
sourcefn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
    &'life0 self, 
    __arg1: &'life1 Context<'life2>, 
    _params: &'life3 Value
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    Self: Sync + 'async_trait, 
 
fn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
    &'life0 self, 
    __arg1: &'life1 Context<'life2>, 
    _params: &'life3 Value
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    Self: Sync + 'async_trait, 
Find the GraphQL entity with the given name from the parameter. Read more
sourceimpl<Cursor, Node, EdgeFields, Name> OutputType for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
 
impl<Cursor, Node, EdgeFields, Name> OutputType for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
sourcefn create_type_info(registry: &mut Registry) -> String
 
fn create_type_info(registry: &mut Registry) -> String
Create type information in the registry and return qualified typename.
sourcefn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
    &'life0 self, 
    ctx: &'life1 ContextSelectionSet<'life2>, 
    _field: &'life3 Positioned<Field>
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    Self: 'async_trait, 
 
fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
    &'life0 self, 
    ctx: &'life1 ContextSelectionSet<'life2>, 
    _field: &'life3 Positioned<Field>
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    Self: 'async_trait, 
Resolve an output value to async_graphql::Value.
sourcefn qualified_type_name() -> String
 
fn qualified_type_name() -> String
Qualified typename.
sourcefn introspection_type_name(&self) -> Cow<'static, str>
 
fn introspection_type_name(&self) -> Cow<'static, str>
Introspection type name Read more
sourceimpl<Cursor, Node, EdgeFields, Name> TypeName for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
 
impl<Cursor, Node, EdgeFields, Name> TypeName for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
impl<Cursor, Node, EdgeFields, Name> ObjectType for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: CursorType + Send + Sync,
    Node: OutputType,
    EdgeFields: ObjectType,
    Name: EdgeNameType, 
Auto Trait Implementations
impl<Cursor, Node, EdgeFields, Name> RefUnwindSafe for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: RefUnwindSafe,
    EdgeFields: RefUnwindSafe,
    Name: RefUnwindSafe,
    Node: RefUnwindSafe, 
impl<Cursor, Node, EdgeFields, Name> Send for Edge<Cursor, Node, EdgeFields, Name>
impl<Cursor, Node, EdgeFields, Name> Sync for Edge<Cursor, Node, EdgeFields, Name>
impl<Cursor, Node, EdgeFields, Name> Unpin for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: Unpin,
    EdgeFields: Unpin,
    Name: Unpin,
    Node: Unpin, 
impl<Cursor, Node, EdgeFields, Name> UnwindSafe for Edge<Cursor, Node, EdgeFields, Name> where
    Cursor: UnwindSafe,
    EdgeFields: UnwindSafe,
    Name: UnwindSafe,
    Node: UnwindSafe, 
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> FutureExt for T
 
impl<T> FutureExt for T
sourcefn with_context(self, otel_cx: Context) -> WithContext<Self>
 
fn with_context(self, otel_cx: Context) -> WithContext<Self>
sourcefn with_current_context(self) -> WithContext<Self>
 
fn with_current_context(self) -> WithContext<Self>
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more