pub struct FileBackedMappingParameters {
pub path: PathBuf,
pub address: u64,
pub size: u64,
pub offset: u64,
pub writable: bool,
pub sync: bool,
pub align: bool,
pub ram: bool,
}
Fields§
§path: PathBuf
§address: u64
§size: u64
§offset: u64
§writable: bool
§sync: bool
§align: bool
§ram: bool
Whether the mapping is for RAM or MMIO.
Implementations§
Trait Implementations§
source§impl Clone for FileBackedMappingParameters
impl Clone for FileBackedMappingParameters
source§fn clone(&self) -> FileBackedMappingParameters
fn clone(&self) -> FileBackedMappingParameters
Returns a copy 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 FileBackedMappingParameters
impl Debug for FileBackedMappingParameters
source§impl<'de> Deserialize<'de> for FileBackedMappingParameters
impl<'de> Deserialize<'de> for FileBackedMappingParameters
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromArgValue for FileBackedMappingParameters
impl FromArgValue for FileBackedMappingParameters
source§impl Ord for FileBackedMappingParameters
impl Ord for FileBackedMappingParameters
source§fn cmp(&self, other: &FileBackedMappingParameters) -> Ordering
fn cmp(&self, other: &FileBackedMappingParameters) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for FileBackedMappingParameters
impl PartialEq for FileBackedMappingParameters
source§fn eq(&self, other: &FileBackedMappingParameters) -> bool
fn eq(&self, other: &FileBackedMappingParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for FileBackedMappingParameters
impl PartialOrd for FileBackedMappingParameters
source§fn partial_cmp(&self, other: &FileBackedMappingParameters) -> Option<Ordering>
fn partial_cmp(&self, other: &FileBackedMappingParameters) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for FileBackedMappingParameters
impl StructuralPartialEq for FileBackedMappingParameters
Auto Trait Implementations§
impl Freeze for FileBackedMappingParameters
impl RefUnwindSafe for FileBackedMappingParameters
impl Send for FileBackedMappingParameters
impl Sync for FileBackedMappingParameters
impl Unpin for FileBackedMappingParameters
impl UnwindSafe for FileBackedMappingParameters
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)