pub struct Use<T: DefUseParticipant> {
pub op: Ptr<Operation>,
pub opd_idx: usize,
/* private fields */
}Expand description
Describes a Value or BasicBlock use.
Fields§
§op: Ptr<Operation>Uses of a def can only be in an operation.
opd_idx: usizeUsed as the i’th operand or successor of op.
Trait Implementations§
impl<T: Copy + DefUseParticipant> Copy for Use<T>
impl<T: Eq + DefUseParticipant> Eq for Use<T>
impl<T: DefUseParticipant> StructuralPartialEq for Use<T>
Auto Trait Implementations§
impl<T> Freeze for Use<T>
impl<T> !RefUnwindSafe for Use<T>
impl<T> Send for Use<T>where
T: Send,
impl<T> Sync for Use<T>where
T: Sync,
impl<T> Unpin for Use<T>where
T: Unpin,
impl<T> !UnwindSafe for Use<T>
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.