pub struct Capability<'a> {
pub body: &'a [u8],
}Expand description
APRS station capabilities packet bytes.
Fields§
§body: &'a [u8]Capability body bytes after the < data type identifier.
Trait Implementations§
Source§impl<'a> Clone for Capability<'a>
impl<'a> Clone for Capability<'a>
Source§fn clone(&self) -> Capability<'a>
fn clone(&self) -> Capability<'a>
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 moreSource§impl<'a> Debug for Capability<'a>
impl<'a> Debug for Capability<'a>
Source§impl<'a> PartialEq for Capability<'a>
impl<'a> PartialEq for Capability<'a>
Source§fn eq(&self, other: &Capability<'a>) -> bool
fn eq(&self, other: &Capability<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for Capability<'a>
impl<'a> Eq for Capability<'a>
impl<'a> StructuralPartialEq for Capability<'a>
Auto Trait Implementations§
impl<'a> Freeze for Capability<'a>
impl<'a> RefUnwindSafe for Capability<'a>
impl<'a> Send for Capability<'a>
impl<'a> Sync for Capability<'a>
impl<'a> Unpin for Capability<'a>
impl<'a> UnsafeUnpin for Capability<'a>
impl<'a> UnwindSafe for Capability<'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