pub struct AuthRefreshTokensInsertInput {
pub created_at: Option<String>,
pub expires_at: Option<String>,
pub id: Option<String>,
pub metadata: Option<Value>,
pub refresh_token_hash: Option<String>,
pub refresh_token_type: Option<AuthRefreshTokenTypesObjRelInsertInput>,
pub type_: Option<AuthRefreshTokenTypesEnum>,
pub user: Option<UsersObjRelInsertInput>,
pub user_id: Option<String>,
}Fields§
§created_at: Option<String>§expires_at: Option<String>§id: Option<String>§metadata: Option<Value>§refresh_token_hash: Option<String>§refresh_token_type: Option<AuthRefreshTokenTypesObjRelInsertInput>§type_: Option<AuthRefreshTokenTypesEnum>§user: Option<UsersObjRelInsertInput>§user_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for AuthRefreshTokensInsertInput
impl RefUnwindSafe for AuthRefreshTokensInsertInput
impl Send for AuthRefreshTokensInsertInput
impl Sync for AuthRefreshTokensInsertInput
impl Unpin for AuthRefreshTokensInsertInput
impl UnsafeUnpin for AuthRefreshTokensInsertInput
impl UnwindSafe for AuthRefreshTokensInsertInput
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