#[repr(C)]
pub enum pa_operation_state_t {
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§
source§impl Clone for pa_operation_state_t
impl Clone for pa_operation_state_t
source§fn clone(&self) -> pa_operation_state_t
fn clone(&self) -> pa_operation_state_t
Returns a copy 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 more