pub enum DomainMut<'a, T> where
T: BitStore, {
Enclave {
head: BitIdx<T::Mem>,
elem: &'a T::Access,
tail: BitTail<T::Mem>,
},
Region {
head: Option<(BitIdx<T::Mem>, &'a T::Access)>,
body: &'a mut [T::Unalias],
tail: Option<(&'a T::Access, BitTail<T::Mem>)>,
},
}
Expand description
Granular representation of the memory region containing a
BitSlice
.
BitSlice
regions can be described in terms of edge and center
partitions, where the edge partitions must retain the aliasing
status of the source BitSlice
handle, and the center partition is
known to be completely unaliased by any other view. This property
allows any BitSlice
handle to be decomposed into smaller regions,
and safely remove any aliasing markers from the center partition
that no longer requires such safeguarding.
This enum splits the underlying element slice [T]
into the
maybe-aliased edge elements and known-unaliased center elements. If
you do not need to work with the memory elements directly, and only
need to firmly specify the access behavior of the BitSlice
handle, use the BitDomain
and BitDomainMut
enums.
Lifetimes
'a
: The lifetime of the referent storage region.
Type Parameters
T
: The register type of the sourceBitSlice
handle, including any aliasing markers.
Mutability
The immutable view produces T::Alias
references, which permit
foreign writes to the referent location but disallow writes through
itself. The mutable view produces T::Access
references, because
&mut _
references can only ever be produced when no other aliasing
handle exists. The write permissions must be weakened from
&mut T::Alias
to &T::Access
in order to satisfy the Rust memory
rules.
The edge references do not forbid modifying bits outside of the
source BitSlice
domain, and writes out of bounds will be
correctly handled by any other handles capable of viewing those
elements. Doing so is still incorrect, though defined, and you are
responsible for writing only within bounds when using DomainMut
.
Variants
Enclave
Fields
Indicates that a BitSlice
is contained entirely in the
interior indices of a single memory element.
Region
Fields
head: Option<(BitIdx<T::Mem>, &'a T::Access)>
If the BitSlice
started in the interior of its first
element, this contains the starting index and the base
address.
body: &'a mut [T::Unalias]
All fully-spanned, unaliased, elements.
This is marked as bare memory without any access
protections, because it is statically impossible for any
other handle to have write access to the region it covers.
As such, a BitSlice
that was marked as entirely aliased,
but contains interior unaliased elements, can safely remove
its aliasing protections.
Indicates that a BitSlice
region touches at least one edge
index of any number of elements.
This contains two optional references to the aliased edges, and one reference to the unaliased middle. Each can be queried and used individually.
Implementations
Attempts to view the domain as an enclave variant.
Parameters
self
Returns
If self
is the Enclave
variant, this returns Some
of the
enclave fields, as a tuple. Otherwise, it returns None
.
Attempts to view the domain as the region variant.
Parameters
self
Returns
If self
is the Region
variant, this returns Some
of the
region fields, as a tuple. Otherwise, it returns None
.
Trait Implementations
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for DomainMut<'a, T> where
<T as BitStore>::Access: RefUnwindSafe,
<T as BitStore>::Mem: RefUnwindSafe,
<T as BitStore>::Unalias: RefUnwindSafe,
impl<'a, T> Send for DomainMut<'a, T> where
<T as BitStore>::Access: Sync,
<T as BitStore>::Unalias: Send,
impl<'a, T> Sync for DomainMut<'a, T> where
<T as BitStore>::Access: Sync,
<T as BitStore>::Unalias: Sync,
impl<'a, T> !UnwindSafe for DomainMut<'a, T>
Blanket Implementations
Mutably borrows from an owned value. Read more
Causes self
to use its Binary
implementation when Debug
-formatted.
Causes self
to use its Display
implementation when
Debug
-formatted. Read more
Causes self
to use its LowerExp
implementation when
Debug
-formatted. Read more
Causes self
to use its LowerHex
implementation when
Debug
-formatted. Read more
Causes self
to use its Octal
implementation when Debug
-formatted.
Causes self
to use its Pointer
implementation when
Debug
-formatted. Read more
Causes self
to use its UpperExp
implementation when
Debug
-formatted. Read more
Causes self
to use its UpperHex
implementation when
Debug
-formatted. Read more
Pipes by value. This is generally the method you want to use. Read more
Borrows self
and passes that borrow into the pipe function. Read more
Mutably borrows self
and passes that borrow into the pipe function. Read more
Borrows self
, then passes self.borrow()
into the pipe function. Read more
Mutably borrows self
, then passes self.borrow_mut()
into the pipe
function. Read more
Borrows self
, then passes self.as_ref()
into the pipe function.
Mutably borrows self
, then passes self.as_mut()
into the pipe
function. Read more
Borrows self
, then passes self.deref()
into the pipe function.
fn pipe_as_ref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: AsRef<T>,
T: 'a,
R: 'a,
fn pipe_as_ref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: AsRef<T>,
T: 'a,
R: 'a,
Pipes a trait borrow into a function that cannot normally be called in suffix position. Read more
fn pipe_borrow<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Borrow<T>,
T: 'a,
R: 'a,
fn pipe_borrow<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Borrow<T>,
T: 'a,
R: 'a,
Pipes a trait borrow into a function that cannot normally be called in suffix position. Read more
fn pipe_deref<'a, R>(&'a self, func: impl FnOnce(&'a Self::Target) -> R) -> R where
Self: Deref,
R: 'a,
fn pipe_deref<'a, R>(&'a self, func: impl FnOnce(&'a Self::Target) -> R) -> R where
Self: Deref,
R: 'a,
Pipes a dereference into a function that cannot normally be called in suffix position. Read more
Pipes a reference into a function that cannot ordinarily be called in suffix position. Read more
Immutable access to the Borrow<B>
of a value. Read more
Mutable access to the BorrowMut<B>
of a value. Read more
Immutable access to the AsRef<R>
view of a value. Read more
Mutable access to the AsMut<R>
view of a value. Read more
Immutable access to the Deref::Target
of a value. Read more
Mutable access to the Deref::Target
of a value. Read more
Calls .tap()
only in debug builds, and is erased in release builds.
Calls .tap_mut()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_borrow()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_borrow_mut()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_ref()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_ref_mut()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_deref()
only in debug builds, and is erased in release
builds. Read more
Provides immutable access to the reference for inspection.
Calls tap_ref
in debug builds, and does nothing in release builds.
Provides mutable access to the reference for modification.
Calls tap_ref_mut
in debug builds, and does nothing in release builds.
Provides immutable access to the borrow for inspection. Read more
Calls tap_borrow
in debug builds, and does nothing in release builds.
fn tap_borrow_mut<F, R>(self, func: F) -> Self where
Self: BorrowMut<T>,
F: FnOnce(&mut T) -> R,
fn tap_borrow_mut<F, R>(self, func: F) -> Self where
Self: BorrowMut<T>,
F: FnOnce(&mut T) -> R,
Provides mutable access to the borrow for modification.
Immutably dereferences self
for inspection.
fn tap_deref_dbg<F, R>(self, func: F) -> Self where
Self: Deref,
F: FnOnce(&Self::Target) -> R,
fn tap_deref_dbg<F, R>(self, func: F) -> Self where
Self: Deref,
F: FnOnce(&Self::Target) -> R,
Calls tap_deref
in debug builds, and does nothing in release builds.
fn tap_deref_mut<F, R>(self, func: F) -> Self where
Self: DerefMut,
F: FnOnce(&mut Self::Target) -> R,
fn tap_deref_mut<F, R>(self, func: F) -> Self where
Self: DerefMut,
F: FnOnce(&mut Self::Target) -> R,
Mutably dereferences self
for modification.