pub struct BACnetSpecialEvent {
pub period: SpecialEventPeriod,
pub list_of_time_values: Vec<BACnetTimeValue>,
pub event_priority: u8,
}Expand description
BACnet special event: an exception schedule entry combining a period definition, a list of time-value pairs, and a priority.
Fields§
§period: SpecialEventPeriodThe period this special event applies to.
list_of_time_values: Vec<BACnetTimeValue>Ordered list of time-value pairs to apply during this period.
event_priority: u8Priority for conflict resolution (1=highest..16=lowest).
Trait Implementations§
Source§impl Clone for BACnetSpecialEvent
impl Clone for BACnetSpecialEvent
Source§fn clone(&self) -> BACnetSpecialEvent
fn clone(&self) -> BACnetSpecialEvent
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 BACnetSpecialEvent
impl Debug for BACnetSpecialEvent
Source§impl PartialEq for BACnetSpecialEvent
impl PartialEq for BACnetSpecialEvent
impl StructuralPartialEq for BACnetSpecialEvent
Auto Trait Implementations§
impl Freeze for BACnetSpecialEvent
impl RefUnwindSafe for BACnetSpecialEvent
impl Send for BACnetSpecialEvent
impl Sync for BACnetSpecialEvent
impl Unpin for BACnetSpecialEvent
impl UnsafeUnpin for BACnetSpecialEvent
impl UnwindSafe for BACnetSpecialEvent
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