pub struct EnumValue {
pub name: String,
pub description: Option<String>,
pub deprecation_status: DeprecationStatus,
}
Expand description
Metadata for a single value in an enum
Fields§
§name: String
The name of the enum value
This is the string literal representation of the enum in responses.
description: Option<String>
The optional description of the enum value.
Note: this is not the description of the enum itself; it’s the description of this enum value.
deprecation_status: DeprecationStatus
Whether the field is deprecated or not, with an optional reason.
Implementations§
Source§impl EnumValue
impl EnumValue
Sourcepub fn description(self, description: &str) -> Self
pub fn description(self, description: &str) -> Self
Sets the description
of this EnumValue
.
Overwrites any previously set description.
Sourcepub fn deprecated(self, reason: Option<&str>) -> Self
pub fn deprecated(self, reason: Option<&str>) -> Self
Sets this EnumValue
as deprecated with an optional reason
.
Overwrites any previously set deprecation reason.
Trait Implementations§
Source§impl<__S> GraphQLObject<__S> for EnumValuewhere
__S: ScalarValue,
impl<__S> GraphQLObject<__S> for EnumValuewhere
__S: ScalarValue,
Source§impl<__S> GraphQLType<__S> for EnumValuewhere
__S: ScalarValue,
impl<__S> GraphQLType<__S> for EnumValuewhere
__S: ScalarValue,
Source§impl<__S> GraphQLValue<__S> for EnumValuewhere
__S: ScalarValue,
impl<__S> GraphQLValue<__S> for EnumValuewhere
__S: ScalarValue,
Source§type TypeInfo = ()
type TypeInfo = ()
Type that may carry additional schema information for this
GraphQLValue
. Read moreSource§fn resolve_field(
&self,
info: &Self::TypeInfo,
field: &str,
args: &Arguments<'_, __S>,
executor: &Executor<'_, '_, Self::Context, __S>,
) -> ExecutionResult<__S>
fn resolve_field( &self, info: &Self::TypeInfo, field: &str, args: &Arguments<'_, __S>, executor: &Executor<'_, '_, Self::Context, __S>, ) -> ExecutionResult<__S>
Resolves the value of a single field on this
GraphQLValue
. Read moreSource§fn concrete_type_name(&self, _: &Self::Context, _: &Self::TypeInfo) -> String
fn concrete_type_name(&self, _: &Self::Context, _: &Self::TypeInfo) -> String
Returns the concrete
GraphQLType
name for this GraphQLValue
being an interface,
an union or an object. Read moreSource§fn resolve_into_type(
&self,
info: &Self::TypeInfo,
type_name: &str,
selection_set: Option<&[Selection<'_, S>]>,
executor: &Executor<'_, '_, Self::Context, S>,
) -> ExecutionResult<S>
fn resolve_into_type( &self, info: &Self::TypeInfo, type_name: &str, selection_set: Option<&[Selection<'_, S>]>, executor: &Executor<'_, '_, Self::Context, S>, ) -> ExecutionResult<S>
Resolves this
GraphQLValue
(being an interface or an union) into a concrete
downstream object type. Read moreSource§impl<__S> GraphQLValueAsync<__S> for EnumValue
impl<__S> GraphQLValueAsync<__S> for EnumValue
Source§fn resolve_field_async<'b>(
&'b self,
info: &'b Self::TypeInfo,
field: &'b str,
args: &'b Arguments<'_, __S>,
executor: &'b Executor<'_, '_, Self::Context, __S>,
) -> BoxFuture<'b, ExecutionResult<__S>>
fn resolve_field_async<'b>( &'b self, info: &'b Self::TypeInfo, field: &'b str, args: &'b Arguments<'_, __S>, executor: &'b Executor<'_, '_, Self::Context, __S>, ) -> BoxFuture<'b, ExecutionResult<__S>>
Resolves the value of a single field on this
GraphQLValueAsync
. Read moreSource§fn resolve_into_type_async<'a>(
&'a self,
info: &'a Self::TypeInfo,
type_name: &str,
selection_set: Option<&'a [Selection<'a, S>]>,
executor: &'a Executor<'a, 'a, Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>>
fn resolve_into_type_async<'a>( &'a self, info: &'a Self::TypeInfo, type_name: &str, selection_set: Option<&'a [Selection<'a, S>]>, executor: &'a Executor<'a, 'a, Self::Context, S>, ) -> BoxFuture<'a, ExecutionResult<S>>
Resolves this
GraphQLValueAsync
(being an interface or an union) into a
concrete downstream object type. Read moreSource§fn resolve_async<'a>(
&'a self,
info: &'a Self::TypeInfo,
selection_set: Option<&'a [Selection<'_, S>]>,
executor: &'a Executor<'_, '_, Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>>
fn resolve_async<'a>( &'a self, info: &'a Self::TypeInfo, selection_set: Option<&'a [Selection<'_, S>]>, executor: &'a Executor<'_, '_, Self::Context, S>, ) -> BoxFuture<'a, ExecutionResult<S>>
Source§impl<__S> IsOutputType<__S> for EnumValuewhere
__S: ScalarValue,
impl<__S> IsOutputType<__S> for EnumValuewhere
__S: ScalarValue,
Auto Trait Implementations§
impl Freeze for EnumValue
impl RefUnwindSafe for EnumValue
impl Send for EnumValue
impl Sync for EnumValue
impl Unpin for EnumValue
impl UnwindSafe for EnumValue
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