pub struct ResendTeamInviteResponse {
pub data: Option<TeamMessageData>,
pub error: Option<String>,
}Expand description
Response from resend_team_invite.
Fields§
§data: Option<TeamMessageData>Operation result message.
error: Option<String>Error message when the request did not succeed.
Trait Implementations§
Source§impl Clone for ResendTeamInviteResponse
impl Clone for ResendTeamInviteResponse
Source§fn clone(&self) -> ResendTeamInviteResponse
fn clone(&self) -> ResendTeamInviteResponse
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 ResendTeamInviteResponse
impl Debug for ResendTeamInviteResponse
Source§impl<'de> Deserialize<'de> for ResendTeamInviteResponse
impl<'de> Deserialize<'de> for ResendTeamInviteResponse
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 ResendTeamInviteResponse
impl RefUnwindSafe for ResendTeamInviteResponse
impl Send for ResendTeamInviteResponse
impl Sync for ResendTeamInviteResponse
impl Unpin for ResendTeamInviteResponse
impl UnsafeUnpin for ResendTeamInviteResponse
impl UnwindSafe for ResendTeamInviteResponse
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