pub struct LimitEnable {
pub low_limit_enable: bool,
pub high_limit_enable: bool,
}Expand description
Which limits are enabled (Clause 12.1.14).
Encoded as a BACnet BIT STRING: bit 0 = low_limit_enable, bit 1 = high_limit_enable.
Fields§
§low_limit_enable: bool§high_limit_enable: boolImplementations§
Trait Implementations§
Source§impl Clone for LimitEnable
impl Clone for LimitEnable
Source§fn clone(&self) -> LimitEnable
fn clone(&self) -> LimitEnable
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 LimitEnable
impl Debug for LimitEnable
Source§impl PartialEq for LimitEnable
impl PartialEq for LimitEnable
impl Copy for LimitEnable
impl Eq for LimitEnable
impl StructuralPartialEq for LimitEnable
Auto Trait Implementations§
impl Freeze for LimitEnable
impl RefUnwindSafe for LimitEnable
impl Send for LimitEnable
impl Sync for LimitEnable
impl Unpin for LimitEnable
impl UnsafeUnpin for LimitEnable
impl UnwindSafe for LimitEnable
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