pub struct SecuritySchemeBody {
pub scheme_type: String,
pub fence_language: String,
pub fence_body: String,
}Expand description
Security scheme entity body.
Fields§
§scheme_type: StringScheme type label (e.g. "apiKey", "oauth2").
fence_language: StringLanguage tag for the fenced code block.
fence_body: StringFenced source excerpt for the security scheme definition.
Trait Implementations§
Source§impl Clone for SecuritySchemeBody
impl Clone for SecuritySchemeBody
Source§fn clone(&self) -> SecuritySchemeBody
fn clone(&self) -> SecuritySchemeBody
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 SecuritySchemeBody
impl Debug for SecuritySchemeBody
Source§impl Default for SecuritySchemeBody
impl Default for SecuritySchemeBody
Source§fn default() -> SecuritySchemeBody
fn default() -> SecuritySchemeBody
Returns the “default value” for a type. Read more
impl Eq for SecuritySchemeBody
Source§impl PartialEq for SecuritySchemeBody
impl PartialEq for SecuritySchemeBody
Source§fn eq(&self, other: &SecuritySchemeBody) -> bool
fn eq(&self, other: &SecuritySchemeBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SecuritySchemeBody
Auto Trait Implementations§
impl Freeze for SecuritySchemeBody
impl RefUnwindSafe for SecuritySchemeBody
impl Send for SecuritySchemeBody
impl Sync for SecuritySchemeBody
impl Unpin for SecuritySchemeBody
impl UnsafeUnpin for SecuritySchemeBody
impl UnwindSafe for SecuritySchemeBody
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