pub struct GetRenderList<'a> { /* private fields */ }Expand description
Get a RenderList.
Implementations§
Source§impl<'a> GetRenderList<'a>
impl<'a> GetRenderList<'a>
Sourcepub fn page_size(&mut self, page_size: u32) -> &mut Self
pub fn page_size(&mut self, page_size: u32) -> &mut Self
The number of renders the query will return you in the page. If not specified, 50 is the default.
Sourcepub fn ordr_username(&mut self, ordr_username: &'a str) -> &mut Self
pub fn ordr_username(&mut self, ordr_username: &'a str) -> &mut Self
Search by o!rdr username, can be used at the same time as replay_username.
Sourcepub fn replay_username(&mut self, replay_username: &'a str) -> &mut Self
pub fn replay_username(&mut self, replay_username: &'a str) -> &mut Self
Search by replay username, can be used at the same time as ordr_username.
Sourcepub fn no_bots(&mut self, no_bots: bool) -> &mut Self
pub fn no_bots(&mut self, no_bots: bool) -> &mut Self
Hide bots from the returned render query.
Trait Implementations§
Source§impl IntoFuture for &mut GetRenderList<'_>
impl IntoFuture for &mut GetRenderList<'_>
Source§type Output = Result<RenderList, ClientError>
type Output = Result<RenderList, ClientError>
The output that the future will produce on completion.
Source§type IntoFuture = OrdrFuture<RenderList>
type IntoFuture = OrdrFuture<RenderList>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Source§impl IntoFuture for GetRenderList<'_>
impl IntoFuture for GetRenderList<'_>
Source§type Output = Result<RenderList, ClientError>
type Output = Result<RenderList, ClientError>
The output that the future will produce on completion.
Source§type IntoFuture = OrdrFuture<RenderList>
type IntoFuture = OrdrFuture<RenderList>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> Freeze for GetRenderList<'a>
impl<'a> !RefUnwindSafe for GetRenderList<'a>
impl<'a> Send for GetRenderList<'a>
impl<'a> Sync for GetRenderList<'a>
impl<'a> Unpin for GetRenderList<'a>
impl<'a> !UnwindSafe for GetRenderList<'a>
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