pub struct LoginCredentials {
pub email: String,
pub password: String,
}Fields§
§email: String§password: StringTrait Implementations§
Source§impl Debug for LoginCredentials
impl Debug for LoginCredentials
Source§impl InputType for LoginCredentials
impl InputType for LoginCredentials
Source§type RawValueType = LoginCredentials
type RawValueType = LoginCredentials
The raw type used for validator. Read more
Source§fn create_type_info(registry: &mut Registry) -> String
fn create_type_info(registry: &mut Registry) -> String
Create type information in the registry and return qualified typename.
Source§fn parse(value: Option<Value>) -> InputValueResult<Self>
fn parse(value: Option<Value>) -> InputValueResult<Self>
Parse from
Value. None represents undefined.Source§fn as_raw_value(&self) -> Option<&Self::RawValueType>
fn as_raw_value(&self) -> Option<&Self::RawValueType>
Returns a reference to the raw value.
§fn qualified_type_name() -> String
fn qualified_type_name() -> String
Qualified typename.
impl InputObjectType for LoginCredentials
Auto Trait Implementations§
impl Freeze for LoginCredentials
impl RefUnwindSafe for LoginCredentials
impl Send for LoginCredentials
impl Sync for LoginCredentials
impl Unpin for LoginCredentials
impl UnwindSafe for LoginCredentials
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