pub enum ZclFrame<'a> {
GeneralCommand(GeneralCommand<'a>),
ClusterSpecificCommand(ClusterSpecificCommand<'a>),
Reserved(ZclHeader),
}Expand description
ZCL Frame
See Section 2.4.1
Variants§
GeneralCommand(GeneralCommand<'a>)
ClusterSpecificCommand(ClusterSpecificCommand<'a>)
Reserved(ZclHeader)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ZclFrame<'a>
impl<'a> RefUnwindSafe for ZclFrame<'a>
impl<'a> Send for ZclFrame<'a>
impl<'a> Sync for ZclFrame<'a>
impl<'a> Unpin for ZclFrame<'a>
impl<'a> UnwindSafe for ZclFrame<'a>
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