pub enum Output {
Coin(CoinOutput),
Contract(ContractOutput),
Message(MessageOutput),
Change(ChangeOutput),
Variable(VariableOutput),
ContractCreated(ContractCreated),
}
Variants§
Coin(CoinOutput)
Contract(ContractOutput)
Message(MessageOutput)
Change(ChangeOutput)
Variable(VariableOutput)
ContractCreated(ContractCreated)
Trait Implementations§
source§impl ContainerType for Output
impl ContainerType for Output
source§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
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: '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
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Resolves a field value and outputs it as a json value
async_graphql::Value
. Read moresource§fn collect_all_fields<'__life>(
&'__life self,
ctx: &ContextSelectionSet<'__life>,
fields: &mut Fields<'__life>
) -> ServerResult<()>
fn collect_all_fields<'__life>(
&'__life self,
ctx: &ContextSelectionSet<'__life>,
fields: &mut Fields<'__life>
) -> ServerResult<()>
Collect all the fields of the container that are queried in the
selection set. Read more
source§fn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
__arg1: &'life1 ContextBase<'life2, &'life2 Positioned<Field>>,
_params: &'life3 ConstValue
) -> Pin<Box<dyn Future<Output = Result<Option<ConstValue>, ServerError>> + Send + 'async_trait, Global>>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 ContextBase<'life2, &'life2 Positioned<Field>>,
_params: &'life3 ConstValue
) -> Pin<Box<dyn Future<Output = Result<Option<ConstValue>, ServerError>> + Send + 'async_trait, Global>>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
source§impl From<ChangeOutput> for Output
impl From<ChangeOutput> for Output
source§fn from(obj: ChangeOutput) -> Self
fn from(obj: ChangeOutput) -> Self
Converts to this type from the input type.
source§impl From<CoinOutput> for Output
impl From<CoinOutput> for Output
source§fn from(obj: CoinOutput) -> Self
fn from(obj: CoinOutput) -> Self
Converts to this type from the input type.
source§impl From<ContractCreated> for Output
impl From<ContractCreated> for Output
source§fn from(obj: ContractCreated) -> Self
fn from(obj: ContractCreated) -> Self
Converts to this type from the input type.
source§impl From<ContractOutput> for Output
impl From<ContractOutput> for Output
source§fn from(obj: ContractOutput) -> Self
fn from(obj: ContractOutput) -> Self
Converts to this type from the input type.
source§impl From<MessageOutput> for Output
impl From<MessageOutput> for Output
source§fn from(obj: MessageOutput) -> Self
fn from(obj: MessageOutput) -> Self
Converts to this type from the input type.
source§impl From<VariableOutput> for Output
impl From<VariableOutput> for Output
source§fn from(obj: VariableOutput) -> Self
fn from(obj: VariableOutput) -> Self
Converts to this type from the input type.
source§impl OutputType for Output
impl OutputType for Output
source§fn 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.
source§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
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: '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
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Resolve an output value to
async_graphql::Value
.source§fn qualified_type_name() -> String
fn qualified_type_name() -> String
Qualified typename.