pub struct CreateInvite {
pub org_id: Uuid,
pub email: String,
pub role_id: Uuid,
pub token_hash: String,
pub expires_at: DateTime<Utc>,
}Fields§
§org_id: Uuid§email: String§role_id: Uuid§token_hash: String§expires_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for CreateInvite
impl Clone for CreateInvite
Source§fn clone(&self) -> CreateInvite
fn clone(&self) -> CreateInvite
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CreateInvite
impl RefUnwindSafe for CreateInvite
impl Send for CreateInvite
impl Sync for CreateInvite
impl Unpin for CreateInvite
impl UnsafeUnpin for CreateInvite
impl UnwindSafe for CreateInvite
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