Struct netsblox_api_common::CollaborationInvite
source · pub struct CollaborationInvite {
pub id: String,
pub sender: String,
pub receiver: String,
pub project_id: ProjectId,
pub state: InvitationState,
pub created_at: SystemTime,
}
Fields§
§id: String
§sender: String
§receiver: String
§project_id: ProjectId
§state: InvitationState
§created_at: SystemTime
Implementations§
Trait Implementations§
source§impl Clone for CollaborationInvite
impl Clone for CollaborationInvite
source§fn clone(&self) -> CollaborationInvite
fn clone(&self) -> CollaborationInvite
Returns a copy 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 CollaborationInvite
impl Debug for CollaborationInvite
source§impl<'de> Deserialize<'de> for CollaborationInvite
impl<'de> Deserialize<'de> for CollaborationInvite
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 RefUnwindSafe for CollaborationInvite
impl Send for CollaborationInvite
impl Sync for CollaborationInvite
impl Unpin for CollaborationInvite
impl UnwindSafe for CollaborationInvite
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