pub struct ApiMetadata {
pub description: Option<String>,
pub summary: Option<String>,
pub tags: Vec<String>,
pub deprecated: bool,
pub rate_limit: Option<RateLimit>,
pub cache: Option<CacheConfig>,
}
Fields§
§description: Option<String>
§summary: Option<String>
§deprecated: bool
§rate_limit: Option<RateLimit>
§cache: Option<CacheConfig>
Trait Implementations§
Source§impl Clone for ApiMetadata
impl Clone for ApiMetadata
Source§fn clone(&self) -> ApiMetadata
fn clone(&self) -> ApiMetadata
Returns a duplicate 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 ApiMetadata
impl Debug for ApiMetadata
Source§impl<'de> Deserialize<'de> for ApiMetadata
impl<'de> Deserialize<'de> for ApiMetadata
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 ApiMetadata
impl PartialEq for ApiMetadata
Source§impl Serialize for ApiMetadata
impl Serialize for ApiMetadata
impl StructuralPartialEq for ApiMetadata
Auto Trait Implementations§
impl Freeze for ApiMetadata
impl RefUnwindSafe for ApiMetadata
impl Send for ApiMetadata
impl Sync for ApiMetadata
impl Unpin for ApiMetadata
impl UnwindSafe for ApiMetadata
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