pub struct CreateInvitation {
pub organization_id: String,
pub email: String,
pub role: String,
pub inviter_id: String,
pub expires_at: DateTime<Utc>,
}Expand description
Invitation creation data
Fields§
§organization_id: String§email: String§role: String§inviter_id: String§expires_at: DateTime<Utc>Implementations§
Trait Implementations§
Source§impl Clone for CreateInvitation
impl Clone for CreateInvitation
Source§fn clone(&self) -> CreateInvitation
fn clone(&self) -> CreateInvitation
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 CreateInvitation
impl RefUnwindSafe for CreateInvitation
impl Send for CreateInvitation
impl Sync for CreateInvitation
impl Unpin for CreateInvitation
impl UnsafeUnpin for CreateInvitation
impl UnwindSafe for CreateInvitation
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