Struct rosu_render::request::GetRenderList
source · 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<'_>
§type Output = Result<RenderList, ClientError>
type Output = Result<RenderList, ClientError>
The output that the future will produce on completion.
§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<'_>
§type Output = Result<RenderList, ClientError>
type Output = Result<RenderList, ClientError>
The output that the future will produce on completion.
§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> !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