pub enum FileDataReadReplyContents {
Ack {
address: u32,
data: Vec<u8>,
},
Nack(Cdc2Ack),
}
Variants§
Trait Implementations§
Source§impl Clone for FileDataReadReplyContents
impl Clone for FileDataReadReplyContents
Source§fn clone(&self) -> FileDataReadReplyContents
fn clone(&self) -> FileDataReadReplyContents
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 Debug for FileDataReadReplyContents
impl Debug for FileDataReadReplyContents
Source§impl Decode for FileDataReadReplyContents
impl Decode for FileDataReadReplyContents
impl Eq for FileDataReadReplyContents
impl StructuralPartialEq for FileDataReadReplyContents
Auto Trait Implementations§
impl Freeze for FileDataReadReplyContents
impl RefUnwindSafe for FileDataReadReplyContents
impl Send for FileDataReadReplyContents
impl Sync for FileDataReadReplyContents
impl Unpin for FileDataReadReplyContents
impl UnwindSafe for FileDataReadReplyContents
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