pub struct RenderList {
pub renders: Vec<Render>,
pub max_renders: u32,
}Expand description
A list of Render.
Fields§
§renders: Vec<Render>Array of renders returned by the api
max_renders: u32The total number of renders on o!rdr, but if search query the total numbers of renders corresponding to that query will be used.
Trait Implementations§
Source§impl Clone for RenderList
impl Clone for RenderList
Source§fn clone(&self) -> RenderList
fn clone(&self) -> RenderList
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 RenderList
impl Debug for RenderList
Source§impl<'de> Deserialize<'de> for RenderList
impl<'de> Deserialize<'de> for RenderList
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 RenderList
impl RefUnwindSafe for RenderList
impl Send for RenderList
impl Sync for RenderList
impl Unpin for RenderList
impl UnwindSafe for RenderList
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