pub enum InputType<'a> {
Scalar(ScalarType),
Enum(EnumType),
List(Box<InputType<'a>>),
Object(InputObjectType<'a>),
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for InputType<'a>
impl<'a> Send for InputType<'a>
impl<'a> Sync for InputType<'a>
impl<'a> Unpin for InputType<'a>
impl<'a> !UnwindSafe for InputType<'a>
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