pub enum AdsTransMode {
ServerCycle = 3,
OnChange = 4,
}
Expand description
Determines the notification mechanism.
ServerCycle
The notification is fired cyclically at intervals of AdsNotificationAttrib::cycle_time.OnChange
The notification is fired only if the values has changed.
Please also read the related documentation in the InfoSys.
Variants§
Trait Implementations§
Source§impl Clone for AdsTransMode
impl Clone for AdsTransMode
Source§fn clone(&self) -> AdsTransMode
fn clone(&self) -> AdsTransMode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for AdsTransMode
Auto Trait Implementations§
impl Freeze for AdsTransMode
impl RefUnwindSafe for AdsTransMode
impl Send for AdsTransMode
impl Sync for AdsTransMode
impl Unpin for AdsTransMode
impl UnwindSafe for AdsTransMode
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