pub struct InputUser {
pub login: String,
pub name: String,
pub profile: String,
pub email: Option<Option<String>>,
pub password: Option<Option<String>>,
pub organisation: Option<Option<String>>,
pub type: Option<Option<String>>,
}Fields§
§login: String§name: String§profile: String§email: Option<Option<String>>§password: Option<Option<String>>§organisation: Option<Option<String>>§type: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for InputUser
impl<'de> Deserialize<'de> for InputUser
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
impl StructuralPartialEq for InputUser
Auto Trait Implementations§
impl Freeze for InputUser
impl RefUnwindSafe for InputUser
impl Send for InputUser
impl Sync for InputUser
impl Unpin for InputUser
impl UnwindSafe for InputUser
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