Enum libpulse_binding::operation::State
source · pub enum State {
Running,
Done,
Cancelled,
}
Variants
Running
The operation is still running.
Done
The operation has completed.
Cancelled
The operation has been cancelled. Operations may get cancelled by the application, or as a result of the context getting disconnected while the operation is pending.
Trait Implementations
sourceimpl Clone for pa_operation_state_t
impl Clone for pa_operation_state_t
sourcefn clone(&self) -> pa_operation_state_t
fn clone(&self) -> pa_operation_state_t
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for pa_operation_state_t
impl Debug for pa_operation_state_t
sourceimpl PartialEq<pa_operation_state_t> for pa_operation_state_t
impl PartialEq<pa_operation_state_t> for pa_operation_state_t
sourcefn eq(&self, other: &pa_operation_state_t) -> bool
fn eq(&self, other: &pa_operation_state_t) -> bool
impl Copy for pa_operation_state_t
impl Eq for pa_operation_state_t
impl StructuralEq for pa_operation_state_t
impl StructuralPartialEq for pa_operation_state_t
Auto Trait Implementations
impl RefUnwindSafe for pa_operation_state_t
impl Send for pa_operation_state_t
impl Sync for pa_operation_state_t
impl Unpin for pa_operation_state_t
impl UnwindSafe for pa_operation_state_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more