pub struct SupportedService {
pub name: String,
pub service_choice: u8,
pub initiate: bool,
pub execute: bool,
}Expand description
A BACnet service supported by the device.
Fields§
§name: StringHuman-readable service name.
service_choice: u8Service choice number.
initiate: boolWhether this device can initiate this service.
execute: boolWhether this device can execute (respond to) this service.
Trait Implementations§
Source§impl Clone for SupportedService
impl Clone for SupportedService
Source§fn clone(&self) -> SupportedService
fn clone(&self) -> SupportedService
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 moreAuto Trait Implementations§
impl Freeze for SupportedService
impl RefUnwindSafe for SupportedService
impl Send for SupportedService
impl Sync for SupportedService
impl Unpin for SupportedService
impl UnsafeUnpin for SupportedService
impl UnwindSafe for SupportedService
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