pub struct TiersResponse {
pub tiers: Vec<Tier>,
pub meta: Meta,
}Expand description
Response envelope for browse-tiers requests.
Fields§
§tiers: Vec<Tier>Tiers returned by the API.
meta: MetaPagination metadata.
Trait Implementations§
Source§impl Debug for TiersResponse
impl Debug for TiersResponse
Source§impl<'de> Deserialize<'de> for TiersResponse
impl<'de> Deserialize<'de> for TiersResponse
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 TiersResponse
impl RefUnwindSafe for TiersResponse
impl Send for TiersResponse
impl Sync for TiersResponse
impl Unpin for TiersResponse
impl UnsafeUnpin for TiersResponse
impl UnwindSafe for TiersResponse
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