pub struct LoweredItem {
pub target_kind: TargetKind,
pub decoder_name: String,
pub kind: LoweredKind,
}Expand description
One lowered target. The kind is either decoder-style codegen
(GenTarget) or emulator-dispatch (LutTarget). Each value keeps its
target and decoder keys so CLI filters can pick a subset.
Fields§
§target_kind: TargetKind§decoder_name: String§kind: LoweredKindAuto Trait Implementations§
impl Freeze for LoweredItem
impl RefUnwindSafe for LoweredItem
impl Send for LoweredItem
impl Sync for LoweredItem
impl Unpin for LoweredItem
impl UnsafeUnpin for LoweredItem
impl UnwindSafe for LoweredItem
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