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.
Auto Trait Implementations§
impl Freeze for ParameterBlockOrIndex
impl RefUnwindSafe for ParameterBlockOrIndex
impl !Send for ParameterBlockOrIndex
impl !Sync for ParameterBlockOrIndex
impl Unpin for ParameterBlockOrIndex
impl UnwindSafe for ParameterBlockOrIndex
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