pub enum FieldMapping {
Scalar,
Plain,
Meta,
Any,
Proc,
}Expand description
How a member PV’s value is mapped into the group structure.
Variants§
Scalar
NTScalar/NTScalarArray with full metadata (alarm, timestamp, display, control).
Plain
Value only, no metadata.
Meta
Alarm + timestamp only, no value transfer.
Any
Variant-union wrapping (pass-through).
Proc
Process-only: put triggers record processing, no value transfer.
Trait Implementations§
Source§impl Clone for FieldMapping
impl Clone for FieldMapping
Source§fn clone(&self) -> FieldMapping
fn clone(&self) -> FieldMapping
Returns a duplicate 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 moreSource§impl Debug for FieldMapping
impl Debug for FieldMapping
Source§impl PartialEq for FieldMapping
impl PartialEq for FieldMapping
impl Copy for FieldMapping
impl Eq for FieldMapping
impl StructuralPartialEq for FieldMapping
Auto Trait Implementations§
impl Freeze for FieldMapping
impl RefUnwindSafe for FieldMapping
impl Send for FieldMapping
impl Sync for FieldMapping
impl Unpin for FieldMapping
impl UnsafeUnpin for FieldMapping
impl UnwindSafe for FieldMapping
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