pub struct SendInvite {
pub user_id: u64,
pub invitation: String,
pub invitees: Vec<u64>,
}Fields§
§user_id: u64§invitation: String§invitees: Vec<u64>Trait Implementations§
Source§impl Debug for SendInvite
impl Debug for SendInvite
Source§impl<'de> Deserialize<'de> for SendInvite
impl<'de> Deserialize<'de> for SendInvite
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 From<SendInvite> for RequestBody
impl From<SendInvite> for RequestBody
Source§fn from(val: SendInvite) -> Self
fn from(val: SendInvite) -> Self
Converts to this type from the input type.
Source§impl RequestResponse for SendInvite
impl RequestResponse for SendInvite
type Response = ErrorSuccess
fn extract_response(body: ResponseBody) -> Result<Self::Response, SdkError>
Auto Trait Implementations§
impl Freeze for SendInvite
impl RefUnwindSafe for SendInvite
impl Send for SendInvite
impl Sync for SendInvite
impl Unpin for SendInvite
impl UnwindSafe for SendInvite
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