pub enum PathParam {
Option(Option<String>),
Required(String),
Vector(Vec<String>),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathParam
impl RefUnwindSafe for PathParam
impl Send for PathParam
impl Sync for PathParam
impl Unpin for PathParam
impl UnwindSafe for PathParam
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