[−][src]Enum juniper::meta::MetaType
Generic type metadata
Methods
impl<'a, S> MetaType<'a, S>
[src]
pub fn name(&self) -> Option<&str>
[src]
Access the name of the type, if applicable
Lists, non-null wrappers, and placeholders don't have names.
pub fn description(&self) -> Option<&String>
[src]
Access the description of the type, if applicable
Lists, nullable wrappers, and placeholders don't have names.
pub fn type_kind(&self) -> TypeKind
[src]
Construct a TypeKind
for a given type
Panics
Panics if the type represents a placeholder or nullable type.
pub fn field_by_name(&self, name: &str) -> Option<&Field<S>>
[src]
Access a field's meta data given its name
Only objects and interfaces have fields. This method always returns None
for other types.
pub fn input_field_by_name(&self, name: &str) -> Option<&Argument<S>>
[src]
Access an input field's meta data given its name
Only input objects have input fields. This method always returns None
for other types.
pub fn as_type(&self) -> Type<'a>
[src]
Construct a Type
literal instance based on the metadata
pub fn input_value_parse_fn(&self) -> Option<fn'b(_: &'b InputValue<S>) -> bool>
[src]
Access the input value parse function, if applicable
An input value parse function is a function that takes an InputValue
instance and returns
true
if it can be parsed as the provided type.
Only scalars, enums, and input objects have parse functions.
pub fn is_composite(&self) -> bool
[src]
Returns true if the type is a composite type
Objects, interfaces, and unions are composite.
pub fn is_leaf(&self) -> bool
[src]
Returns true if the type can occur in leaf positions in queries
Only enums and scalars are leaf types.
pub fn is_abstract(&self) -> bool
[src]
Returns true if the type is abstract
Only interfaces and unions are abstract types.
pub fn is_input(&self) -> bool
[src]
Returns true if the type can be used in input positions, e.g. arguments or variables
Only scalars, enums, and input objects are input types.
Trait Implementations
Auto Trait Implementations
impl<'a, S> Send for MetaType<'a, S> where
S: Send,
S: Send,
impl<'a, S> Sync for MetaType<'a, S> where
S: Sync,
S: Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,