pub struct ArchConfig {
pub name: &'static str,
pub pointer_size: usize,
pub cache_line_size: usize,
pub max_align: usize,
pub endianness: Endianness,
}Fields§
§name: &'static str§pointer_size: usize§cache_line_size: usize§max_align: usize§endianness: EndiannessTrait Implementations§
Source§impl Clone for ArchConfig
impl Clone for ArchConfig
Source§fn clone(&self) -> ArchConfig
fn clone(&self) -> ArchConfig
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 ArchConfig
impl Debug for ArchConfig
Source§impl PartialEq for ArchConfig
impl PartialEq for ArchConfig
impl Copy for ArchConfig
impl StructuralPartialEq for ArchConfig
Auto Trait Implementations§
impl Freeze for ArchConfig
impl RefUnwindSafe for ArchConfig
impl Send for ArchConfig
impl Sync for ArchConfig
impl Unpin for ArchConfig
impl UnsafeUnpin for ArchConfig
impl UnwindSafe for ArchConfig
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