#[repr(u8)]pub enum ApplicationTag {
Show 16 variants
Null = 0,
Boolean = 1,
UnsignedInt = 2,
SignedInt = 3,
Real = 4,
Double = 5,
OctetString = 6,
CharacterString = 7,
BitString = 8,
Enumerated = 9,
Date = 10,
Time = 11,
ObjectIdentifier = 12,
Reserved13 = 13,
Reserved14 = 14,
Reserved15 = 15,
}Expand description
BACnet application tag numbers
Variants§
Null = 0
Boolean = 1
UnsignedInt = 2
SignedInt = 3
Real = 4
Double = 5
OctetString = 6
CharacterString = 7
BitString = 8
Enumerated = 9
Date = 10
Time = 11
ObjectIdentifier = 12
Reserved13 = 13
Reserved14 = 14
Reserved15 = 15
Trait Implementations§
Source§impl Clone for ApplicationTag
impl Clone for ApplicationTag
Source§fn clone(&self) -> ApplicationTag
fn clone(&self) -> ApplicationTag
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ApplicationTag
Source§impl Debug for ApplicationTag
impl Debug for ApplicationTag
impl Eq for ApplicationTag
Source§impl PartialEq for ApplicationTag
impl PartialEq for ApplicationTag
Source§fn eq(&self, other: &ApplicationTag) -> bool
fn eq(&self, other: &ApplicationTag) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ApplicationTag
Auto Trait Implementations§
impl Freeze for ApplicationTag
impl RefUnwindSafe for ApplicationTag
impl Send for ApplicationTag
impl Sync for ApplicationTag
impl Unpin for ApplicationTag
impl UnsafeUnpin for ApplicationTag
impl UnwindSafe for ApplicationTag
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