pub enum PduCollectionTrigger {
Always,
Never,
}
Expand description
The collction trigger defines whether a Pdu contributes to the triggering of the data transmission if Pdu collection is enabled
Variants§
Always
Pdu will trigger the transmission of the data.
Never
Pdu will be buffered and will not trigger the transmission of the data
Trait Implementations§
Source§impl Clone for PduCollectionTrigger
impl Clone for PduCollectionTrigger
Source§fn clone(&self) -> PduCollectionTrigger
fn clone(&self) -> PduCollectionTrigger
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 PduCollectionTrigger
impl Debug for PduCollectionTrigger
Source§impl From<PduCollectionTrigger> for EnumItem
impl From<PduCollectionTrigger> for EnumItem
Source§fn from(value: PduCollectionTrigger) -> Self
fn from(value: PduCollectionTrigger) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PduCollectionTrigger
impl PartialEq for PduCollectionTrigger
Source§impl TryFrom<EnumItem> for PduCollectionTrigger
impl TryFrom<EnumItem> for PduCollectionTrigger
impl Copy for PduCollectionTrigger
impl Eq for PduCollectionTrigger
impl StructuralPartialEq for PduCollectionTrigger
Auto Trait Implementations§
impl Freeze for PduCollectionTrigger
impl RefUnwindSafe for PduCollectionTrigger
impl Send for PduCollectionTrigger
impl Sync for PduCollectionTrigger
impl Unpin for PduCollectionTrigger
impl UnwindSafe for PduCollectionTrigger
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.