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