pub enum LoweredKind {
Gen(GenTarget),
Lut(LutTarget),
InstrType {
input: PathBuf,
output: String,
struct_name: String,
subdecoder: Option<String>,
},
}Variants§
Gen(GenTarget)
Lut(LutTarget)
InstrType
Generate an instruction-type newtype only.
Carries the output path and struct name. subdecoder is Some
when the newtype is for a sub-decoder.
Auto Trait Implementations§
impl Freeze for LoweredKind
impl RefUnwindSafe for LoweredKind
impl Send for LoweredKind
impl Sync for LoweredKind
impl Unpin for LoweredKind
impl UnsafeUnpin for LoweredKind
impl UnwindSafe for LoweredKind
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