pub struct RegisterUser {
pub email: String,
pub password: String,
}Expand description
사용자 등록에 필요한 데이터를 나타내는 구조체입니다.
Fields§
§email: String등록할 사용자의 이메일
password: String등록할 사용자의 비밀번호
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RegisterUser
impl RefUnwindSafe for RegisterUser
impl Send for RegisterUser
impl Sync for RegisterUser
impl Unpin for RegisterUser
impl UnwindSafe for RegisterUser
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