pub struct GetAllQuotes {
pub quotes: Vec<Quote>,
pub total: u32,
pub skip: u32,
pub limit: u32,
}Fields§
§quotes: Vec<Quote>§total: u32§skip: u32§limit: u32Trait Implementations§
Source§impl Debug for GetAllQuotes
impl Debug for GetAllQuotes
Source§impl<'de> Deserialize<'de> for GetAllQuotes
impl<'de> Deserialize<'de> for GetAllQuotes
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 GetAllQuotes
impl RefUnwindSafe for GetAllQuotes
impl Send for GetAllQuotes
impl Sync for GetAllQuotes
impl Unpin for GetAllQuotes
impl UnwindSafe for GetAllQuotes
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