Struct juniper::meta::EnumValue[][src]

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

Construct a new enum value with the provided name

Set the description of the enum value

This overwrites the description if any was previously set.

Set the enum value to be deprecated with an optional reason.

This overwrites the deprecation reason if any was previously set.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

An arbitrary function without meaning. Read more

Returns name of this GraphQLType to expose. Read more

Returns MetaType representing this GraphQLType.

Context type for this GraphQLValue. Read more

Type that may carry additional schema information for this GraphQLValue. Read more

Returns name of the GraphQLType exposed by this GraphQLValue. Read more

Resolves the value of a single field on this GraphQLValue. Read more

Returns the concrete GraphQLType name for this GraphQLValue being an interface, an union or an object. Read more

Resolves this GraphQLValue (being an interface or an union) into a concrete downstream object type. Read more

Resolves the provided selection_set against this GraphQLValue. Read more

Resolves the value of a single field on this GraphQLValueAsync. Read more

Resolves this GraphQLValueAsync (being an interface or an union) into a concrete downstream object type. Read more

Resolves the provided selection_set against this GraphQLValueAsync. Read more

An arbitrary function without meaning. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.