pub struct BACnetDateRange {
pub start_date: Date,
pub end_date: Date,
}Expand description
BACnet date range: a SEQUENCE of start and end Date values.
Encoded as 8 bytes: 4 bytes for start_date followed by 4 bytes for end_date.
Fields§
§start_date: DateThe start of the date range (inclusive).
end_date: DateThe end of the date range (inclusive).
Implementations§
Trait Implementations§
Source§impl Clone for BACnetDateRange
impl Clone for BACnetDateRange
Source§fn clone(&self) -> BACnetDateRange
fn clone(&self) -> BACnetDateRange
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 BACnetDateRange
impl Debug for BACnetDateRange
Source§impl PartialEq for BACnetDateRange
impl PartialEq for BACnetDateRange
impl Eq for BACnetDateRange
impl StructuralPartialEq for BACnetDateRange
Auto Trait Implementations§
impl Freeze for BACnetDateRange
impl RefUnwindSafe for BACnetDateRange
impl Send for BACnetDateRange
impl Sync for BACnetDateRange
impl Unpin for BACnetDateRange
impl UnsafeUnpin for BACnetDateRange
impl UnwindSafe for BACnetDateRange
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