usecrate::{AnnOpRef, Annotation, Dialect};/// Annotated consuming operation and argument position of a value.
#[derive(Debug, Clone, PartialEq, Eq)]pubstructAnnValUseRef<'s, 'ann, D: Dialect, OpAnn: Annotation, ValAnn: Annotation>{/// Annotated reference to the operation that consumes this value.
pubopref:AnnOpRef<'s, 'ann, D, OpAnn, ValAnn>,
/// Zero-based index into the consuming operation's argument list.
pubposition:u8,
}