pub struct SetFileMetadataPayload {
pub vendor: FileVendor,
pub option: u8,
pub load_address: u32,
pub metadata: FileMetadata,
pub file_name: FixedString<23>,
}
Fields§
§vendor: FileVendor
§option: u8
0 = default. (RESEARCH NEEDED)
load_address: u32
The storage entry address of the file.
metadata: FileMetadata
§file_name: FixedString<23>
Trait Implementations§
Source§impl Clone for SetFileMetadataPayload
impl Clone for SetFileMetadataPayload
Source§fn clone(&self) -> SetFileMetadataPayload
fn clone(&self) -> SetFileMetadataPayload
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 SetFileMetadataPayload
impl Debug for SetFileMetadataPayload
Source§impl Encode for SetFileMetadataPayload
impl Encode for SetFileMetadataPayload
fn into_encoded(self) -> Result<Vec<u8>, EncodeError>where
Self: Sized,
Source§impl PartialEq for SetFileMetadataPayload
impl PartialEq for SetFileMetadataPayload
impl Eq for SetFileMetadataPayload
impl StructuralPartialEq for SetFileMetadataPayload
Auto Trait Implementations§
impl Freeze for SetFileMetadataPayload
impl RefUnwindSafe for SetFileMetadataPayload
impl Send for SetFileMetadataPayload
impl Sync for SetFileMetadataPayload
impl Unpin for SetFileMetadataPayload
impl UnwindSafe for SetFileMetadataPayload
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more