pub enum Packet<T: AsRef<[u8]>> {
Initialization(InitializationPacket<T>),
Continuation(ContinuationPacket<T>),
}Expand description
A CTAPHID packet.
Variants§
Initialization(InitializationPacket<T>)
A CTAPHID initialization packet.
Continuation(ContinuationPacket<T>)
A CTAPHID continuation packet.
Implementations§
Source§impl<T: AsRef<[u8]>> Packet<T>
impl<T: AsRef<[u8]>> Packet<T>
Sourcepub fn packet_type(&self) -> PacketType
pub fn packet_type(&self) -> PacketType
Returns the type of this packet.
Trait Implementations§
Source§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: AsRef<[u8]>> From<InitializationPacket<T>> for Packet<T>
impl<T: AsRef<[u8]>> From<InitializationPacket<T>> for Packet<T>
Source§fn from(packet: InitializationPacket<T>) -> Self
fn from(packet: InitializationPacket<T>) -> Self
Converts to this type from the input type.
Source§impl<T: Ord + AsRef<[u8]>> Ord for Packet<T>
impl<T: Ord + AsRef<[u8]>> Ord for Packet<T>
Source§impl<T: PartialOrd + AsRef<[u8]>> PartialOrd for Packet<T>
impl<T: PartialOrd + AsRef<[u8]>> PartialOrd for Packet<T>
impl<T: Copy + AsRef<[u8]>> Copy for Packet<T>
impl<T: Eq + AsRef<[u8]>> Eq for Packet<T>
impl<T: AsRef<[u8]>> StructuralPartialEq for Packet<T>
Auto Trait Implementations§
impl<T> Freeze for Packet<T>where
T: Freeze,
impl<T> RefUnwindSafe for Packet<T>where
T: RefUnwindSafe,
impl<T> Send for Packet<T>where
T: Send,
impl<T> Sync for Packet<T>where
T: Sync,
impl<T> Unpin for Packet<T>where
T: Unpin,
impl<T> UnwindSafe for Packet<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