pub enum ApiKeyLocationDto {
Header,
Query,
}Expand description
Where to place an API key.
Variants§
Trait Implementations§
Source§impl Clone for ApiKeyLocationDto
impl Clone for ApiKeyLocationDto
Source§fn clone(&self) -> ApiKeyLocationDto
fn clone(&self) -> ApiKeyLocationDto
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApiKeyLocationDto
impl Debug for ApiKeyLocationDto
Source§impl<'de> Deserialize<'de> for ApiKeyLocationDto
impl<'de> Deserialize<'de> for ApiKeyLocationDto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ApiKeyLocationDto
impl PartialEq for ApiKeyLocationDto
Source§fn eq(&self, other: &ApiKeyLocationDto) -> bool
fn eq(&self, other: &ApiKeyLocationDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiKeyLocationDto
impl Serialize for ApiKeyLocationDto
impl StructuralPartialEq for ApiKeyLocationDto
Auto Trait Implementations§
impl Freeze for ApiKeyLocationDto
impl RefUnwindSafe for ApiKeyLocationDto
impl Send for ApiKeyLocationDto
impl Sync for ApiKeyLocationDto
impl Unpin for ApiKeyLocationDto
impl UnsafeUnpin for ApiKeyLocationDto
impl UnwindSafe for ApiKeyLocationDto
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