#[repr(u32)]pub enum State {
DdsReadSampleState = 1,
DdsNotReadSampleState = 2,
DdsAnySampleState = 3,
DdsNewViewState = 4,
DdsNotNewViewState = 8,
DdsAnyViewState = 12,
DdsAliveInstanceState = 16,
DdsNotAliveDisposedInstanceState = 32,
DdsNotAliveNoWritersInstanceState = 64,
DdsAnyInstanceState = 112,
DdsAnyState = 127,
}Variants§
DdsReadSampleState = 1
DdsNotReadSampleState = 2
DdsAnySampleState = 3
DdsNewViewState = 4
DdsNotNewViewState = 8
DdsAnyViewState = 12
DdsAliveInstanceState = 16
DdsNotAliveDisposedInstanceState = 32
DdsNotAliveNoWritersInstanceState = 64
DdsAnyInstanceState = 112
DdsAnyState = 127
Trait Implementations§
Source§impl BitAndAssign<State> for StateMask
impl BitAndAssign<State> for StateMask
Source§fn bitand_assign(&mut self, other: State)
fn bitand_assign(&mut self, other: State)
Performs the
&= operation. Read moreSource§impl BitOrAssign<State> for StateMask
impl BitOrAssign<State> for StateMask
Source§fn bitor_assign(&mut self, other: State)
fn bitor_assign(&mut self, other: State)
Performs the
|= operation. Read moreSource§impl BitXorAssign<State> for StateMask
impl BitXorAssign<State> for StateMask
Source§fn bitxor_assign(&mut self, other: State)
fn bitxor_assign(&mut self, other: State)
Performs the
^= operation. Read moreSource§impl Ord for State
impl Ord for State
Source§impl PartialOrd for State
impl PartialOrd for State
impl Copy for State
impl Eq for State
impl StructuralPartialEq for State
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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