pub enum ParameterPosition<'s> {
Positional(usize),
Named(&'s str),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for ParameterPosition<'s>
impl<'s> RefUnwindSafe for ParameterPosition<'s>
impl<'s> Send for ParameterPosition<'s>
impl<'s> Sync for ParameterPosition<'s>
impl<'s> Unpin for ParameterPosition<'s>
impl<'s> UnwindSafe for ParameterPosition<'s>
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