pub struct FileMetadataReplyPayload {
pub linked_vendor: Option<FileVendor>,
pub size: u32,
pub load_address: u32,
pub crc32: u32,
pub metadata: FileMetadata,
}
Fields§
§linked_vendor: Option<FileVendor>
RESEARCH NEEDED: Unknown what this is if there is no link to the file.
size: u32
§load_address: u32
The storage entry address of the file.
crc32: u32
§metadata: FileMetadata
Trait Implementations§
Source§impl Clone for FileMetadataReplyPayload
impl Clone for FileMetadataReplyPayload
Source§fn clone(&self) -> FileMetadataReplyPayload
fn clone(&self) -> FileMetadataReplyPayload
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 FileMetadataReplyPayload
impl Debug for FileMetadataReplyPayload
Source§impl PartialEq for FileMetadataReplyPayload
impl PartialEq for FileMetadataReplyPayload
impl Eq for FileMetadataReplyPayload
impl StructuralPartialEq for FileMetadataReplyPayload
Auto Trait Implementations§
impl Freeze for FileMetadataReplyPayload
impl RefUnwindSafe for FileMetadataReplyPayload
impl Send for FileMetadataReplyPayload
impl Sync for FileMetadataReplyPayload
impl Unpin for FileMetadataReplyPayload
impl UnwindSafe for FileMetadataReplyPayload
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