hypers_openapi 0.14.1

Compile time generated OpenAPI documentation for hypers
Documentation
//! Implements [OpenAPI External Docs Object][external_docs] types.
//!
//! [external_docs]: https://spec.openapis.org/oas/latest.html#xml-objec
use serde::{Deserialize, Serialize};

/// 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 hypers_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()
        }
    }
    /// Add target url for external documentation location.
    pub fn url<I: Into<String>>(mut self, url: I) -> Self {
        self.url = url.into();
        self
    }
    /// Add additional description of external documentation.
    pub fn description<S: Into<String>>(mut self, description: S) -> Self {
        self.description = Some(description.into());
        self
    }
}
#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_default_external_docs() {
        let external_docs = ExternalDocs::default();
        assert_eq!(external_docs.url, "");
        assert_eq!(external_docs.description, None);
    }

    #[test]
    fn test_build_external_docs() {
        let external_docs = ExternalDocs::default();
        let external_docs_with_url = external_docs
            .url("https://pet-api.external.docs")
            .description("description");

        assert_eq!(external_docs_with_url.url, "https://pet-api.external.docs");
        assert_eq!(external_docs_with_url.description, Some("description".to_string()));
    }
}