pub struct ContinuationPacket<T: AsRef<[u8]>> {
pub channel: Channel,
pub sequence: u8,
pub data: T,
}Expand description
A CTAPHID continuation packet.
Fields§
§channel: ChannelThe channel this packet is sent or received on.
sequence: u8The sequence number of this packet.
data: TThe payload data.
Implementations§
Trait Implementations§
Source§impl<T: Clone + AsRef<[u8]>> Clone for ContinuationPacket<T>
impl<T: Clone + AsRef<[u8]>> Clone for ContinuationPacket<T>
Source§fn clone(&self) -> ContinuationPacket<T>
fn clone(&self) -> ContinuationPacket<T>
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<T: AsRef<[u8]>> From<ContinuationPacket<T>> for Packet<T>
impl<T: AsRef<[u8]>> From<ContinuationPacket<T>> for Packet<T>
Source§fn from(packet: ContinuationPacket<T>) -> Self
fn from(packet: ContinuationPacket<T>) -> Self
Converts to this type from the input type.
Source§impl<T: Ord + AsRef<[u8]>> Ord for ContinuationPacket<T>
impl<T: Ord + AsRef<[u8]>> Ord for ContinuationPacket<T>
Source§fn cmp(&self, other: &ContinuationPacket<T>) -> Ordering
fn cmp(&self, other: &ContinuationPacket<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialOrd + AsRef<[u8]>> PartialOrd for ContinuationPacket<T>
impl<T: PartialOrd + AsRef<[u8]>> PartialOrd for ContinuationPacket<T>
impl<T: Copy + AsRef<[u8]>> Copy for ContinuationPacket<T>
impl<T: Eq + AsRef<[u8]>> Eq for ContinuationPacket<T>
impl<T: AsRef<[u8]>> StructuralPartialEq for ContinuationPacket<T>
Auto Trait Implementations§
impl<T> Freeze for ContinuationPacket<T>where
T: Freeze,
impl<T> RefUnwindSafe for ContinuationPacket<T>where
T: RefUnwindSafe,
impl<T> Send for ContinuationPacket<T>where
T: Send,
impl<T> Sync for ContinuationPacket<T>where
T: Sync,
impl<T> Unpin for ContinuationPacket<T>where
T: Unpin,
impl<T> UnwindSafe for ContinuationPacket<T>where
T: UnwindSafe,
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