pub struct ApiMetadata {
pub endpoints: Vec<ApiEndpoint>,
pub types: HashMap<String, TypeDefinition>,
}Expand description
API元数据
包含API的端点列表和类型定义
Fields§
§endpoints: Vec<ApiEndpoint>API端点列表
types: HashMap<String, TypeDefinition>类型定义
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 Default for ApiMetadata
impl Default for ApiMetadata
Source§fn default() -> ApiMetadata
fn default() -> ApiMetadata
Returns the “default value” for a type. Read more
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
Auto Trait Implementations§
impl Freeze for ApiMetadata
impl RefUnwindSafe for ApiMetadata
impl Send for ApiMetadata
impl Sync for ApiMetadata
impl Unpin for ApiMetadata
impl UnsafeUnpin 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