pub struct DirectoryEntryReplyPayload {
pub file_index: u8,
pub size: u32,
pub load_address: u32,
pub crc: u32,
pub metadata: Option<FileMetadata>,
pub file_name: FixedString<23>,
}
Fields§
§file_index: u8
§size: u32
§load_address: u32
The storage entry address of the file.
crc: u32
§metadata: Option<FileMetadata>
§file_name: FixedString<23>
Trait Implementations§
Source§impl Clone for DirectoryEntryReplyPayload
impl Clone for DirectoryEntryReplyPayload
Source§fn clone(&self) -> DirectoryEntryReplyPayload
fn clone(&self) -> DirectoryEntryReplyPayload
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 DirectoryEntryReplyPayload
impl Debug for DirectoryEntryReplyPayload
Source§impl Decode for DirectoryEntryReplyPayload
impl Decode for DirectoryEntryReplyPayload
impl Eq for DirectoryEntryReplyPayload
impl StructuralPartialEq for DirectoryEntryReplyPayload
Auto Trait Implementations§
impl Freeze for DirectoryEntryReplyPayload
impl RefUnwindSafe for DirectoryEntryReplyPayload
impl Send for DirectoryEntryReplyPayload
impl Sync for DirectoryEntryReplyPayload
impl Unpin for DirectoryEntryReplyPayload
impl UnwindSafe for DirectoryEntryReplyPayload
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