Struct openapi_schema::v3::ExternalDoc
source · pub struct ExternalDoc {
pub description: Option<String>,
pub url: String,
pub extensions: Extensions,
}
Expand description
External Documentation
Allows referencing an external resource for extended documentation.
Fields§
§description: Option<String>
A short description of the target documentation.
url: String
he URL for the target documentation.
extensions: Extensions
Trait Implementations§
source§impl Clone for ExternalDoc
impl Clone for ExternalDoc
source§fn clone(&self) -> ExternalDoc
fn clone(&self) -> ExternalDoc
Returns a copy 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 ExternalDoc
impl Debug for ExternalDoc
source§impl<'de> Deserialize<'de> for ExternalDoc
impl<'de> Deserialize<'de> for ExternalDoc
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<ExternalDoc> for ExternalDoc
impl PartialEq<ExternalDoc> for ExternalDoc
source§fn eq(&self, other: &ExternalDoc) -> bool
fn eq(&self, other: &ExternalDoc) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ExternalDoc
impl Serialize for ExternalDoc
impl StructuralPartialEq for ExternalDoc
Auto Trait Implementations§
impl RefUnwindSafe for ExternalDoc
impl Send for ExternalDoc
impl Sync for ExternalDoc
impl Unpin for ExternalDoc
impl UnwindSafe for ExternalDoc
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