1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
//! Implements [OpenAPI External Docs Object][external_docs] types.
//!
//! [external_docs]: https://spec.openapis.org/oas/latest.html#xml-object
use serde::{Deserialize, Serialize};
use super::{builder, set_value};
builder! {
ExternalDocsBuilder;
/// Reference of external resource allowing extended documentation.
#[non_exhaustive]
#[derive(Serialize, Deserialize, Default, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "debug", derive(Debug))]
#[serde(rename_all = "camelCase")]
pub struct ExternalDocs {
/// Target url for external documentation location.
pub url: String,
/// Additional description supporting markdown syntax of the external documentation.
pub description: Option<String>,
}
}
impl ExternalDocs {
/// Construct a new [`ExternalDocs`].
///
/// Function takes target url argument for the external documentation location.
///
/// # Examples
///
/// ```rust
/// # use utoipa::openapi::external_docs::ExternalDocs;
/// let external_docs = ExternalDocs::new("https://pet-api.external.docs");
/// ```
pub fn new<S: AsRef<str>>(url: S) -> Self {
Self {
url: url.as_ref().to_string(),
..Default::default()
}
}
}
impl ExternalDocsBuilder {
/// Add target url for external documentation location.
pub fn url<I: Into<String>>(mut self, url: I) -> Self {
set_value!(self url url.into())
}
/// Add additional description of external documentation.
pub fn description<S: Into<String>>(mut self, description: Option<S>) -> Self {
set_value!(self description description.map(|description| description.into()))
}
}