pub enum BindingSlotOccupancy {
Empty,
Occupied {
participant_id: ParticipantId,
},
}Expand description
Current participant occupancy of one connection/conversation binding slot.
Variants§
Empty
No participant currently occupies the slot.
Occupied
One participant currently occupies the slot.
Fields
§
participant_id: ParticipantIdOccupying participant, used only for same-participant rotation.
Trait Implementations§
Source§impl Clone for BindingSlotOccupancy
impl Clone for BindingSlotOccupancy
Source§fn clone(&self) -> BindingSlotOccupancy
fn clone(&self) -> BindingSlotOccupancy
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 moreimpl Copy for BindingSlotOccupancy
Source§impl Debug for BindingSlotOccupancy
impl Debug for BindingSlotOccupancy
impl Eq for BindingSlotOccupancy
Source§impl PartialEq for BindingSlotOccupancy
impl PartialEq for BindingSlotOccupancy
impl StructuralPartialEq for BindingSlotOccupancy
Auto Trait Implementations§
impl Freeze for BindingSlotOccupancy
impl RefUnwindSafe for BindingSlotOccupancy
impl Send for BindingSlotOccupancy
impl Sync for BindingSlotOccupancy
impl Unpin for BindingSlotOccupancy
impl UnsafeUnpin for BindingSlotOccupancy
impl UnwindSafe for BindingSlotOccupancy
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