pub enum MirOperand {
Local(MirLocalId),
Constant(MirConstant),
FunctionHandle(CallableIdentity),
}Variants§
Trait Implementations§
Source§impl Clone for MirOperand
impl Clone for MirOperand
Source§fn clone(&self) -> MirOperand
fn clone(&self) -> MirOperand
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 moreSource§impl Debug for MirOperand
impl Debug for MirOperand
Source§impl<'de> Deserialize<'de> for MirOperand
impl<'de> Deserialize<'de> for MirOperand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MirOperand
impl PartialEq for MirOperand
Source§fn eq(&self, other: &MirOperand) -> bool
fn eq(&self, other: &MirOperand) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MirOperand
impl Serialize for MirOperand
impl StructuralPartialEq for MirOperand
Auto Trait Implementations§
impl Freeze for MirOperand
impl RefUnwindSafe for MirOperand
impl Send for MirOperand
impl Sync for MirOperand
impl Unpin for MirOperand
impl UnsafeUnpin for MirOperand
impl UnwindSafe for MirOperand
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