pub enum PvEntry {
Simple(Arc<ProcessVariable>),
Record(Arc<RwLock<RecordInstance>>),
}Expand description
Unified entry in the PV database.
Variants§
Simple(Arc<ProcessVariable>)
Record(Arc<RwLock<RecordInstance>>)
Auto Trait Implementations§
impl !RefUnwindSafe for PvEntry
impl !UnwindSafe for PvEntry
impl Freeze for PvEntry
impl Send for PvEntry
impl Sync for PvEntry
impl Unpin for PvEntry
impl UnsafeUnpin for PvEntry
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