#[repr(i32)]pub enum SubscribeEventAssocId {
Future,
Current,
All,
Value(AssociationId),
}
Expand description
SubscribeEventAssocId: AssociationID Used for Event Subscription
Note: repr should be same as AssociationId
(ie. i32
)
Variants§
Future
Subscribe to Future Association IDs
Current
Subscribe to Current Association IDs
All
Subscribe to ALL Association IDs
Value(AssociationId)
Subscribe to Association ID with a given value.
Trait Implementations§
Source§impl Clone for SubscribeEventAssocId
impl Clone for SubscribeEventAssocId
Source§fn clone(&self) -> SubscribeEventAssocId
fn clone(&self) -> SubscribeEventAssocId
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 SubscribeEventAssocId
impl Debug for SubscribeEventAssocId
Source§impl From<SubscribeEventAssocId> for AssociationId
impl From<SubscribeEventAssocId> for AssociationId
Source§fn from(value: SubscribeEventAssocId) -> Self
fn from(value: SubscribeEventAssocId) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SubscribeEventAssocId
impl PartialEq for SubscribeEventAssocId
impl Copy for SubscribeEventAssocId
impl Eq for SubscribeEventAssocId
impl StructuralPartialEq for SubscribeEventAssocId
Auto Trait Implementations§
impl Freeze for SubscribeEventAssocId
impl RefUnwindSafe for SubscribeEventAssocId
impl Send for SubscribeEventAssocId
impl Sync for SubscribeEventAssocId
impl Unpin for SubscribeEventAssocId
impl UnwindSafe for SubscribeEventAssocId
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