Struct ComplexStateRef
pub struct ComplexStateRef<'a, A: Arch>(/* private fields */);
Expand description
A reference to ComplexJitState
.
Trait Implementations§
§impl<A: Arch> AsRef<SystemState<A>> for ComplexStateRef<'_, A>
impl<A: Arch> AsRef<SystemState<A>> for ComplexStateRef<'_, A>
§fn as_ref(&self) -> &SystemState<A>
fn as_ref(&self) -> &SystemState<A>
Converts this type into a shared reference of the (usually inferred) input type.
Auto Trait Implementations§
impl<'a, A> Freeze for ComplexStateRef<'a, A>
impl<'a, A> !RefUnwindSafe for ComplexStateRef<'a, A>
impl<'a, A> !Send for ComplexStateRef<'a, A>
impl<'a, A> !Sync for ComplexStateRef<'a, A>
impl<'a, A> Unpin for ComplexStateRef<'a, A>
impl<'a, A> !UnwindSafe for ComplexStateRef<'a, A>
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
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
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