Struct cranelift_codegen::Writable
source · pub struct Writable<T: Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> { /* private fields */ }
Expand description
A type wrapper that indicates a register type is writable. The
underlying register can be extracted, and the type wrapper can be
built using an arbitrary register. Hence, this type-level wrapper
is not strictly a guarantee. However, “casting” to a writable
register is an explicit operation for which we can
audit. Ordinarily, internal APIs in the compiler backend should
take a Writable<Reg>
whenever the register is written, and the
usual, frictionless way to get one of these is to allocate a new
temporary.
Implementations§
source§impl<T: Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Writable<T>
impl<T: Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Writable<T>
Trait Implementations§
source§impl<T: Clone + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Clone for Writable<T>
impl<T: Clone + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Clone for Writable<T>
source§impl<T: Debug + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Debug for Writable<T>
impl<T: Debug + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Debug for Writable<T>
source§impl<T: Hash + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Hash for Writable<T>
impl<T: Hash + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Hash for Writable<T>
source§impl<T: Ord + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Ord for Writable<T>
impl<T: Ord + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Ord for Writable<T>
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<T: PartialEq + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> PartialEq<Writable<T>> for Writable<T>
impl<T: PartialEq + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> PartialEq<Writable<T>> for Writable<T>
source§impl<T: PartialOrd + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> PartialOrd<Writable<T>> for Writable<T>
impl<T: PartialOrd + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> PartialOrd<Writable<T>> for Writable<T>
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<T: Copy + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Copy for Writable<T>
impl<T: Eq + Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> Eq for Writable<T>
impl<T: Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> StructuralEq for Writable<T>
impl<T: Clone + Copy + Debug + PartialEq + Eq + PartialOrd + Ord + Hash> StructuralPartialEq for Writable<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Writable<T>where T: RefUnwindSafe,
impl<T> Send for Writable<T>where T: Send,
impl<T> Sync for Writable<T>where T: Sync,
impl<T> Unpin for Writable<T>where T: Unpin,
impl<T> UnwindSafe for Writable<T>where T: UnwindSafe,
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.