pub struct UserCreate {
pub email: Option<String>,
pub name: String,
pub teams: Vec<UserCreateTeamWithRole>,
pub user_type: UserType,
pub generate_api_key: Option<bool>,
}Fields§
§email: Option<String>§name: String§teams: Vec<UserCreateTeamWithRole>§user_type: UserType§generate_api_key: Option<bool>Trait Implementations§
Auto Trait Implementations§
impl Freeze for UserCreate
impl RefUnwindSafe for UserCreate
impl Send for UserCreate
impl Sync for UserCreate
impl Unpin for UserCreate
impl UnsafeUnpin for UserCreate
impl UnwindSafe for UserCreate
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