pub struct PartialMessage<T: AsRef<[u8]> + Default + Extend<u8>> { /* private fields */ }Expand description
A Message that has been partially assembled from CTAPHID packets.
Implementations§
Source§impl<T: AsRef<[u8]> + Default + Extend<u8>> PartialMessage<T>
impl<T: AsRef<[u8]> + Default + Extend<u8>> PartialMessage<T>
Sourcepub fn extend<S: AsRef<[u8]>>(
self,
packet: &ContinuationPacket<S>,
) -> Result<DefragmentedMessage<T>, DefragmentationError>
pub fn extend<S: AsRef<[u8]>>( self, packet: &ContinuationPacket<S>, ) -> Result<DefragmentedMessage<T>, DefragmentationError>
Continues assembling a Message using the given continuation packet.
Sourcepub fn try_extend<S: AsRef<[u8]>>(
self,
packet: &Packet<S>,
) -> Result<DefragmentedMessage<T>, DefragmentationError>
pub fn try_extend<S: AsRef<[u8]>>( self, packet: &Packet<S>, ) -> Result<DefragmentedMessage<T>, DefragmentationError>
Tries to continue assembling a Message using the given packet.
The packet must be a continuation packet. This is a shorthand for matching the packet and
calling PartialMessage::extend.
Trait Implementations§
Source§impl<T: Clone + AsRef<[u8]> + Default + Extend<u8>> Clone for PartialMessage<T>
impl<T: Clone + AsRef<[u8]> + Default + Extend<u8>> Clone for PartialMessage<T>
Source§fn clone(&self) -> PartialMessage<T>
fn clone(&self) -> PartialMessage<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]> + Default + Extend<u8>, S: AsRef<[u8]>> From<InitializationPacket<S>> for PartialMessage<T>
impl<T: AsRef<[u8]> + Default + Extend<u8>, S: AsRef<[u8]>> From<InitializationPacket<S>> for PartialMessage<T>
Source§fn from(packet: InitializationPacket<S>) -> Self
fn from(packet: InitializationPacket<S>) -> Self
Converts to this type from the input type.
Source§impl<T: AsRef<[u8]> + Default + Extend<u8>> From<PartialMessage<T>> for DefragmentedMessage<T>
impl<T: AsRef<[u8]> + Default + Extend<u8>> From<PartialMessage<T>> for DefragmentedMessage<T>
Source§fn from(message: PartialMessage<T>) -> Self
fn from(message: PartialMessage<T>) -> Self
Converts to this type from the input type.
Source§impl<T: Ord + AsRef<[u8]> + Default + Extend<u8>> Ord for PartialMessage<T>
impl<T: Ord + AsRef<[u8]> + Default + Extend<u8>> Ord for PartialMessage<T>
Source§fn cmp(&self, other: &PartialMessage<T>) -> Ordering
fn cmp(&self, other: &PartialMessage<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]> + Default + Extend<u8>> PartialOrd for PartialMessage<T>
impl<T: PartialOrd + AsRef<[u8]> + Default + Extend<u8>> PartialOrd for PartialMessage<T>
impl<T: Eq + AsRef<[u8]> + Default + Extend<u8>> Eq for PartialMessage<T>
impl<T: AsRef<[u8]> + Default + Extend<u8>> StructuralPartialEq for PartialMessage<T>
Auto Trait Implementations§
impl<T> Freeze for PartialMessage<T>where
T: Freeze,
impl<T> RefUnwindSafe for PartialMessage<T>where
T: RefUnwindSafe,
impl<T> Send for PartialMessage<T>where
T: Send,
impl<T> Sync for PartialMessage<T>where
T: Sync,
impl<T> Unpin for PartialMessage<T>where
T: Unpin,
impl<T> UnwindSafe for PartialMessage<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