pub struct JsonApi {
pub version: Option<String>,
pub meta: Option<Meta>,
}
Expand description
Information about the implementation of JSON:API used by the server
For more information see the JSON:API docs
Fields§
§version: Option<String>
The highest JSON:API version supported
meta: Option<Meta>
Non-standard meta information
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JsonApi
impl<'de> Deserialize<'de> for JsonApi
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
impl StructuralPartialEq for JsonApi
Auto Trait Implementations§
impl Freeze for JsonApi
impl RefUnwindSafe for JsonApi
impl Send for JsonApi
impl Sync for JsonApi
impl Unpin for JsonApi
impl UnwindSafe for JsonApi
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