pub enum ParameterBlockOrIndex {
Block(ParameterBlock),
Index(usize),
}Variants§
Block(ParameterBlock)
Index(usize)
Trait Implementations§
source§impl From<ParameterBlock> for ParameterBlockOrIndex
impl From<ParameterBlock> for ParameterBlockOrIndex
source§fn from(block: ParameterBlock) -> Self
fn from(block: ParameterBlock) -> Self
Converts to this type from the input type.