pub enum CopyDestination<R> {
Register(R),
Stack(i32),
}Expand description
Writable physical location in a parallel assignment.
Variants§
Trait Implementations§
Source§impl<R: Clone> Clone for CopyDestination<R>
impl<R: Clone> Clone for CopyDestination<R>
Source§fn clone(&self) -> CopyDestination<R>
fn clone(&self) -> CopyDestination<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<R: Copy> Copy for CopyDestination<R>
Source§impl<R: Debug> Debug for CopyDestination<R>
impl<R: Debug> Debug for CopyDestination<R>
impl<R: Eq> Eq for CopyDestination<R>
Source§impl<R: Hash> Hash for CopyDestination<R>
impl<R: Hash> Hash for CopyDestination<R>
Source§impl<R: Ord> Ord for CopyDestination<R>
impl<R: Ord> Ord for CopyDestination<R>
Source§fn cmp(&self, other: &CopyDestination<R>) -> Ordering
fn cmp(&self, other: &CopyDestination<R>) -> Ordering
1.21.0 (const: unstable) · 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl<R: PartialEq> PartialEq for CopyDestination<R>
impl<R: PartialEq> PartialEq for CopyDestination<R>
Source§impl<R: PartialOrd> PartialOrd for CopyDestination<R>
impl<R: PartialOrd> PartialOrd for CopyDestination<R>
impl<R: PartialEq> StructuralPartialEq for CopyDestination<R>
Auto Trait Implementations§
impl<R> Freeze for CopyDestination<R>where
R: Freeze,
impl<R> RefUnwindSafe for CopyDestination<R>where
R: RefUnwindSafe,
impl<R> Send for CopyDestination<R>where
R: Send,
impl<R> Sync for CopyDestination<R>where
R: Sync,
impl<R> Unpin for CopyDestination<R>where
R: Unpin,
impl<R> UnsafeUnpin for CopyDestination<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for CopyDestination<R>where
R: 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