pub enum Condition {
None,
Changed,
}
Expand description
Specifies under which conditions the data is to be sent by the server and received by the client.
Variants§
None
The default, data will be sent strictly according to the defined period.
Changed
Data will only be sent to the client when one or more values have changed. All the variables in a data definition will be returned if just one of the values changes.
Trait Implementations§
impl Eq for Condition
impl StructuralPartialEq for Condition
Auto Trait Implementations§
impl Freeze for Condition
impl RefUnwindSafe for Condition
impl Send for Condition
impl Sync for Condition
impl Unpin for Condition
impl UnwindSafe for Condition
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