pub enum CalendarEntry {
Date(Date),
Range(DateRange),
WeekNDay {
month: u8,
week_of_month: u8,
day_of_week: u8,
},
}Expand description
An entry in a BACnet Calendar’s date-list property.
Variants§
Trait Implementations§
Source§impl Clone for CalendarEntry
impl Clone for CalendarEntry
Source§fn clone(&self) -> CalendarEntry
fn clone(&self) -> CalendarEntry
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 CalendarEntry
impl Debug for CalendarEntry
Source§impl PartialEq for CalendarEntry
impl PartialEq for CalendarEntry
impl StructuralPartialEq for CalendarEntry
Auto Trait Implementations§
impl Freeze for CalendarEntry
impl RefUnwindSafe for CalendarEntry
impl Send for CalendarEntry
impl Sync for CalendarEntry
impl Unpin for CalendarEntry
impl UnsafeUnpin for CalendarEntry
impl UnwindSafe for CalendarEntry
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