pub struct DownloadReply<'a> {
pub dsmcc_message: &'a [u8],
}Expand description
download_reply() (Table 76): app → host — encapsulates one DSM-CC U-N
message, carried verbatim.
Fields§
§dsmcc_message: &'a [u8]The encapsulated DSM-CC message bytes (the DSMCC_descriptor() loop).
Trait Implementations§
Source§impl<'a> Clone for DownloadReply<'a>
impl<'a> Clone for DownloadReply<'a>
Source§fn clone(&self) -> DownloadReply<'a>
fn clone(&self) -> DownloadReply<'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 DownloadReply<'a>
impl<'a> Debug for DownloadReply<'a>
Source§impl<'a> Default for DownloadReply<'a>
impl<'a> Default for DownloadReply<'a>
Source§fn default() -> DownloadReply<'a>
fn default() -> DownloadReply<'a>
Returns the “default value” for a type. Read more
impl<'a> Eq for DownloadReply<'a>
Source§impl<'a> Parse<'a> for DownloadReply<'a>
impl<'a> Parse<'a> for DownloadReply<'a>
Source§impl<'a> PartialEq for DownloadReply<'a>
impl<'a> PartialEq for DownloadReply<'a>
Source§impl<'a> Serialize for DownloadReply<'a>
Available on crate feature serde only.
impl<'a> Serialize for DownloadReply<'a>
Available on crate feature
serde only.Source§impl Serialize for DownloadReply<'_>
impl Serialize for DownloadReply<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for DownloadReply<'a>
Auto Trait Implementations§
impl<'a> Freeze for DownloadReply<'a>
impl<'a> RefUnwindSafe for DownloadReply<'a>
impl<'a> Send for DownloadReply<'a>
impl<'a> Sync for DownloadReply<'a>
impl<'a> Unpin for DownloadReply<'a>
impl<'a> UnsafeUnpin for DownloadReply<'a>
impl<'a> UnwindSafe for DownloadReply<'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