pub enum CompType {
Default,
Sync,
Async,
}Expand description
Completion type for pvGet/pvPut.
Variants§
Default
Default: synchronous for pvGet, fire-and-forget for pvPut.
Sync
Synchronous: block until complete.
Async
Asynchronous: start in background, check with pvGetComplete/pvPutComplete.
Trait Implementations§
impl Copy for CompType
impl Eq for CompType
impl StructuralPartialEq for CompType
Auto Trait Implementations§
impl Freeze for CompType
impl RefUnwindSafe for CompType
impl Send for CompType
impl Sync for CompType
impl Unpin for CompType
impl UnsafeUnpin for CompType
impl UnwindSafe for CompType
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