pub struct Client { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl BeatmapMethods for Client
impl BeatmapMethods for Client
Source§fn get_beatmap_by_id(
&self,
map_id: &str,
m: Modes,
limit: i32,
) -> Result<Vec<BeatmapConstructor>, ()>
fn get_beatmap_by_id( &self, map_id: &str, m: Modes, limit: i32, ) -> Result<Vec<BeatmapConstructor>, ()>
Returns a vector of BeatmapConstructor
§Example
let map = client.get_beatmap_by_id("1553352", Modes::Standard, 10)
.unwrap();
println!("{:?}", map); // BeatmapConstructor { ... }
Source§fn get_beatmap_by_set(
&self,
set_id: &str,
m: Modes,
limit: i32,
) -> Result<Vec<BeatmapConstructor>, ()>
fn get_beatmap_by_set( &self, set_id: &str, m: Modes, limit: i32, ) -> Result<Vec<BeatmapConstructor>, ()>
Returns a vector of BeatmapConstructor
§Example
let map = client.get_beatmap_by_set("735969", Modes::Standard, 10)
.unwrap();
println!("{:?}", map); // BeatmapConstructor { ... }
Source§fn get_beatmap_by_user(
&self,
user: &str,
m: Modes,
limit: i32,
) -> Result<Vec<BeatmapConstructor>, ()>
fn get_beatmap_by_user( &self, user: &str, m: Modes, limit: i32, ) -> Result<Vec<BeatmapConstructor>, ()>
Returns a vector of BeatmapConstructor
§Example
let map = client.get_beatmap_by_user("Cookiezi", Modes::Standard, 10)
.unwrap();
println!("{:?}", map); // BeatmapConstructor { ... }
Source§fn get_beatmap_by_hash(
&self,
hash: &str,
m: Modes,
limit: i32,
) -> Result<Vec<BeatmapConstructor>, ()>
fn get_beatmap_by_hash( &self, hash: &str, m: Modes, limit: i32, ) -> Result<Vec<BeatmapConstructor>, ()>
Returns a vector of BeatmapConstructor
§Example
let map = client.get_beatmap_by_hash("f4b98cf7c6e2d9eed80f4551da211ac3", Modes::Standard, 10)
.unwrap();
println!("{:?}", map); // BeatmapConstructor { ... }
Source§impl UserMethods for Client
impl UserMethods for Client
Source§fn get_user(
&self,
u: &str,
m: Modes,
event_days: i32,
) -> Result<Vec<UserConstructor>, ()>
fn get_user( &self, u: &str, m: Modes, event_days: i32, ) -> Result<Vec<UserConstructor>, ()>
Returns a vector of UserConstructor
§Example
let user = client.get_user("Cookiezi", Modes::Standard, 10)
.unwrap();
println!("{:?}", user); // UserConstructor { ... }
Source§fn get_user_recent(
&self,
u: &str,
m: Modes,
limit: i32,
) -> Result<Vec<UserRecentConstructor>, ()>
fn get_user_recent( &self, u: &str, m: Modes, limit: i32, ) -> Result<Vec<UserRecentConstructor>, ()>
Returns a vector of UserRecentConstructor
§Example
let user_recent = client.get_user_recent("Cookieizi", Modes::Standard, 10)
.unwrap();
println!("{:?}", user_recent); // UserRecentConstructor { ... }
Source§fn get_user_best(
&self,
u: &str,
m: Modes,
limit: i32,
) -> Result<Vec<UserBestConstructor>, ()>
fn get_user_best( &self, u: &str, m: Modes, limit: i32, ) -> Result<Vec<UserBestConstructor>, ()>
Returns a vector of UserBestConstructor
§Example
let user_best = client.get_user_best("Cookiezi", Modes::Standard, 10)
.unwrap();
println!("{:?}", user_best); // UserBestConstructor { ... }
Source§fn get_scores(
&self,
u: &str,
b: &str,
mode: Modes,
mods: Vec<Mods>,
limit: i32,
) -> Result<Vec<ScoreConstructor>, String>
fn get_scores( &self, u: &str, b: &str, mode: Modes, mods: Vec<Mods>, limit: i32, ) -> Result<Vec<ScoreConstructor>, String>
Returns a vector of ScoreConstructor
§Example
let scores = client.get_scores("", "1553352", Modes::Standard, vec![Mods::NoMods], 10)
.unwrap();
println!("{:?}", scores); // ScoreConstructor { ... }
Auto Trait Implementations§
impl Freeze for Client
impl RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnwindSafe for Client
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more