pub enum TransferProperty {
Pending,
Triggered,
TriggeredOnChange,
TriggeredOnChangeWithoutRepetition,
TriggeredWithoutRepetition,
}
Expand description
The TransferProperty
defines if or how the signal influences the transfer of the PDU
Variants§
Pending
The signal is pending; it does not trigger the transfer of the PDU
Triggered
The signal triggers the transfer of the PDU
TriggeredOnChange
The signal triggers the transfer of the PDU if the value changes
TriggeredOnChangeWithoutRepetition
The signal triggers the transfer of the PDU if the value changes without repetition
TriggeredWithoutRepetition
The signal triggers the transfer of the PDU without repetition
Trait Implementations§
Source§impl Clone for TransferProperty
impl Clone for TransferProperty
Source§fn clone(&self) -> TransferProperty
fn clone(&self) -> TransferProperty
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 TransferProperty
impl Debug for TransferProperty
Source§impl From<TransferProperty> for EnumItem
impl From<TransferProperty> for EnumItem
Source§fn from(value: TransferProperty) -> Self
fn from(value: TransferProperty) -> Self
Converts to this type from the input type.
Source§impl Hash for TransferProperty
impl Hash for TransferProperty
Source§impl PartialEq for TransferProperty
impl PartialEq for TransferProperty
Source§impl TryFrom<EnumItem> for TransferProperty
impl TryFrom<EnumItem> for TransferProperty
impl Copy for TransferProperty
impl Eq for TransferProperty
impl StructuralPartialEq for TransferProperty
Auto Trait Implementations§
impl Freeze for TransferProperty
impl RefUnwindSafe for TransferProperty
impl Send for TransferProperty
impl Sync for TransferProperty
impl Unpin for TransferProperty
impl UnwindSafe for TransferProperty
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.