pub struct PendingJoin {
pub join_id: Uuid,
pub agent: AgentIdentity,
pub requested_at: DateTime<Utc>,
pub status: JoinStatus,
}Fields§
§join_id: Uuid§agent: AgentIdentity§requested_at: DateTime<Utc>§status: JoinStatusTrait Implementations§
Source§impl Clone for PendingJoin
impl Clone for PendingJoin
Source§fn clone(&self) -> PendingJoin
fn clone(&self) -> PendingJoin
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PendingJoin
impl Debug for PendingJoin
Source§impl<'de> Deserialize<'de> for PendingJoin
impl<'de> Deserialize<'de> for PendingJoin
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 PendingJoin
impl RefUnwindSafe for PendingJoin
impl Send for PendingJoin
impl Sync for PendingJoin
impl Unpin for PendingJoin
impl UnsafeUnpin for PendingJoin
impl UnwindSafe for PendingJoin
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