pub struct Mem_read_request<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> {
pub access_kind: Access_kind<ARCH_AK>,
pub va: Option<BitVector<VASIZE>>,
pub pa: PA,
pub translation: TS,
pub size: i128,
pub tag: bool,
}Expand description
Mem_read_request
Generated from the Sail sources at sail/lib/concurrency_interface/read_write.sail L93-104.
Fields§
§access_kind: Access_kind<ARCH_AK>§va: Option<BitVector<VASIZE>>§pa: PA§translation: TS§size: i128§tag: boolTrait Implementations§
Source§impl<const N: i128, const VASIZE: i128, PA: Clone, TS: Clone, ARCH_AK: Clone> Clone for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA: Clone, TS: Clone, ARCH_AK: Clone> Clone for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
Source§fn clone(&self) -> Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
fn clone(&self) -> Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
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<const N: i128, const VASIZE: i128, PA: Debug, TS: Debug, ARCH_AK: Debug> Debug for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA: Debug, TS: Debug, ARCH_AK: Debug> Debug for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
Source§impl<const N: i128, const VASIZE: i128, PA: PartialEq, TS: PartialEq, ARCH_AK: PartialEq> PartialEq for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA: PartialEq, TS: PartialEq, ARCH_AK: PartialEq> PartialEq for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
Source§fn eq(&self, other: &Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>) -> bool
fn eq(&self, other: &Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<const N: i128, const VASIZE: i128, PA: Copy, TS: Copy, ARCH_AK: Copy> Copy for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA: Eq, TS: Eq, ARCH_AK: Eq> Eq for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> StructuralPartialEq for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
Auto Trait Implementations§
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> Freeze for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> RefUnwindSafe for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> Send for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> Sync for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> Unpin for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
impl<const N: i128, const VASIZE: i128, PA, TS, ARCH_AK> UnwindSafe for Mem_read_request<N, VASIZE, PA, TS, ARCH_AK>
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