pub struct IsInvitableUserResponse {
pub is_invitable_user: Option<bool>,
}Expand description
Response for IsInvitableUser RPC.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- userinvitations is invitable user customers (response)
Fields§
§is_invitable_user: Option<bool>Returns true if the email address is invitable.
Trait Implementations§
Source§impl Clone for IsInvitableUserResponse
impl Clone for IsInvitableUserResponse
Source§fn clone(&self) -> IsInvitableUserResponse
fn clone(&self) -> IsInvitableUserResponse
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 moreSource§impl Debug for IsInvitableUserResponse
impl Debug for IsInvitableUserResponse
Source§impl Default for IsInvitableUserResponse
impl Default for IsInvitableUserResponse
Source§fn default() -> IsInvitableUserResponse
fn default() -> IsInvitableUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IsInvitableUserResponse
impl<'de> Deserialize<'de> for IsInvitableUserResponse
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
Source§impl Serialize for IsInvitableUserResponse
impl Serialize for IsInvitableUserResponse
impl ResponseResult for IsInvitableUserResponse
Auto Trait Implementations§
impl Freeze for IsInvitableUserResponse
impl RefUnwindSafe for IsInvitableUserResponse
impl Send for IsInvitableUserResponse
impl Sync for IsInvitableUserResponse
impl Unpin for IsInvitableUserResponse
impl UnwindSafe for IsInvitableUserResponse
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