pub enum ParameterSource {
Path,
Query,
Body,
Header,
Cookie,
}Expand description
Source of parameter data
Variants§
Trait Implementations§
Source§impl Clone for ParameterSource
impl Clone for ParameterSource
Source§fn clone(&self) -> ParameterSource
fn clone(&self) -> ParameterSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParameterSource
impl Debug for ParameterSource
Source§impl PartialEq for ParameterSource
impl PartialEq for ParameterSource
impl StructuralPartialEq for ParameterSource
Auto Trait Implementations§
impl Freeze for ParameterSource
impl RefUnwindSafe for ParameterSource
impl Send for ParameterSource
impl Sync for ParameterSource
impl Unpin for ParameterSource
impl UnwindSafe for ParameterSource
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