pub struct Hub {
pub name: Option<String>,
pub description: Option<String>,
pub url: Option<String>,
pub created: Option<Value>,
pub modified: Option<Value>,
pub apis: Option<Vec<Api>>,
}Fields
name: Option<String>The name of the Hub
description: Option<String>The description of the Hub
url: Option<String>The public URL of the hub
created: Option<Value>Creation date of this Hub
modified: Option<Value>Last udpate date of this Hub
apis: Option<Vec<Api>>The list of APIs belonging to this Hub
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Hub
impl<'de> Deserialize<'de> for Hub
sourcefn 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 RefUnwindSafe for Hub
impl Send for Hub
impl Sync for Hub
impl Unpin for Hub
impl UnwindSafe for Hub
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more