pub struct SyncInternalInvitationResponse {
pub processed: u32,
pub invitation_ids: Vec<String>,
}Expand description
Response from syncing an internal invitation action
Fields§
§processed: u32Number of invitations processed
invitation_ids: Vec<String>IDs of the invitations that were processed
Trait Implementations§
Source§impl Clone for SyncInternalInvitationResponse
impl Clone for SyncInternalInvitationResponse
Source§fn clone(&self) -> SyncInternalInvitationResponse
fn clone(&self) -> SyncInternalInvitationResponse
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<'de> Deserialize<'de> for SyncInternalInvitationResponse
impl<'de> Deserialize<'de> for SyncInternalInvitationResponse
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 SyncInternalInvitationResponse
impl RefUnwindSafe for SyncInternalInvitationResponse
impl Send for SyncInternalInvitationResponse
impl Sync for SyncInternalInvitationResponse
impl Unpin for SyncInternalInvitationResponse
impl UnsafeUnpin for SyncInternalInvitationResponse
impl UnwindSafe for SyncInternalInvitationResponse
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