pub enum StepType {
Given,
When,
Then,
}Expand description
The fundamental Gherkin step type after contextually handling But and And
Variants§
Trait Implementations§
Source§impl<__S> BaseSubTypes<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> BaseSubTypes<__S> for StepTypewhere
__S: ScalarValue,
Source§const NAMES: Types
const NAMES: Types
Sub-[
Types] of the GraphQL object.Source§impl<__S> BaseType<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> BaseType<__S> for StepTypewhere
__S: ScalarValue,
Source§impl<'de> Deserialize<'de> for StepType
impl<'de> Deserialize<'de> for StepType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<__S> FromInputValue<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> FromInputValue<__S> for StepTypewhere
__S: ScalarValue,
Source§fn from_input_value(v: &InputValue<__S>) -> Result<Self, Self::Error>
fn from_input_value(v: &InputValue<__S>) -> Result<Self, Self::Error>
Performs the conversion.
Source§impl<__S> GraphQLType<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> GraphQLType<__S> for StepTypewhere
__S: ScalarValue,
Source§impl<__S> GraphQLValue<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> GraphQLValue<__S> for StepTypewhere
__S: ScalarValue,
Source§type TypeInfo = ()
type TypeInfo = ()
Type that may carry additional schema information for this
GraphQLValue. Read moreSource§fn resolve(
&self,
_: &(),
_: Option<&[Selection<'_, __S>]>,
_: &Executor<'_, '_, Self::Context, __S>,
) -> ExecutionResult<__S>
fn resolve( &self, _: &(), _: Option<&[Selection<'_, __S>]>, _: &Executor<'_, '_, Self::Context, __S>, ) -> ExecutionResult<__S>
Source§fn resolve_field(
&self,
_info: &Self::TypeInfo,
_field_name: &str,
_arguments: &Arguments<'_, S>,
_executor: &Executor<'_, '_, Self::Context, S>,
) -> Result<Value<S>, FieldError<S>>
fn resolve_field( &self, _info: &Self::TypeInfo, _field_name: &str, _arguments: &Arguments<'_, S>, _executor: &Executor<'_, '_, Self::Context, S>, ) -> Result<Value<S>, FieldError<S>>
Resolves the value of a single field on this
GraphQLValue. Read moreSource§fn resolve_into_type(
&self,
info: &Self::TypeInfo,
type_name: &str,
selection_set: Option<&[Selection<'_, S>]>,
executor: &Executor<'_, '_, Self::Context, S>,
) -> Result<Value<S>, FieldError<S>>
fn resolve_into_type( &self, info: &Self::TypeInfo, type_name: &str, selection_set: Option<&[Selection<'_, S>]>, executor: &Executor<'_, '_, Self::Context, S>, ) -> Result<Value<S>, FieldError<S>>
Resolves this
GraphQLValue (being an interface or an union) into a concrete
downstream object type. Read moreSource§fn concrete_type_name(
&self,
context: &Self::Context,
info: &Self::TypeInfo,
) -> String
fn concrete_type_name( &self, context: &Self::Context, info: &Self::TypeInfo, ) -> String
Returns the concrete
GraphQLType name for this GraphQLValue being an interface,
an union or an object. Read moreSource§impl<__S> GraphQLValueAsync<__S> for StepType
impl<__S> GraphQLValueAsync<__S> for StepType
Source§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§fn resolve_field_async<'a>(
&'a self,
_info: &'a Self::TypeInfo,
_field_name: &'a str,
_arguments: &'a Arguments<'_, S>,
_executor: &'a Executor<'_, '_, Self::Context, S>,
) -> Pin<Box<dyn Future<Output = Result<Value<S>, FieldError<S>>> + Send + 'a>>
fn resolve_field_async<'a>( &'a self, _info: &'a Self::TypeInfo, _field_name: &'a str, _arguments: &'a Arguments<'_, S>, _executor: &'a Executor<'_, '_, Self::Context, S>, ) -> Pin<Box<dyn Future<Output = Result<Value<S>, FieldError<S>>> + Send + 'a>>
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>,
) -> Pin<Box<dyn Future<Output = Result<Value<S>, FieldError<S>>> + Send + 'a>>
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>, ) -> Pin<Box<dyn Future<Output = Result<Value<S>, FieldError<S>>> + Send + 'a>>
Resolves this
GraphQLValueAsync (being an interface or an union) into a
concrete downstream object type. Read moreSource§impl<__S> IsInputType<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> IsInputType<__S> for StepTypewhere
__S: ScalarValue,
Source§impl<__S> IsOutputType<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> IsOutputType<__S> for StepTypewhere
__S: ScalarValue,
Source§impl<__S> ToInputValue<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> ToInputValue<__S> for StepTypewhere
__S: ScalarValue,
Source§fn to_input_value(&self) -> InputValue<__S>
fn to_input_value(&self) -> InputValue<__S>
Performs the conversion.
Source§impl<__S> WrappedType<__S> for StepTypewhere
__S: ScalarValue,
impl<__S> WrappedType<__S> for StepTypewhere
__S: ScalarValue,
impl Copy for StepType
impl Eq for StepType
impl StructuralPartialEq for StepType
Auto Trait Implementations§
impl Freeze for StepType
impl RefUnwindSafe for StepType
impl Send for StepType
impl Sync for StepType
impl Unpin for StepType
impl UnwindSafe for StepType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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