pub struct AuditLogInviteSentData {
pub email: Option<String>,
pub role: Option<String>,
}Fields§
§email: Option<String>The email invited to the organization.
role: Option<String>The role the email was invited to be. Is either owner or member.
Trait Implementations§
Source§impl Debug for AuditLogInviteSentData
impl Debug for AuditLogInviteSentData
Source§impl<'de> Deserialize<'de> for AuditLogInviteSentData
impl<'de> Deserialize<'de> for AuditLogInviteSentData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuditLogInviteSentData
impl RefUnwindSafe for AuditLogInviteSentData
impl Send for AuditLogInviteSentData
impl Sync for AuditLogInviteSentData
impl Unpin for AuditLogInviteSentData
impl UnwindSafe for AuditLogInviteSentData
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