Client

Struct Client 

Source
pub struct Client { /* private fields */ }

Implementations§

Source§

impl Client

Source

pub fn new(key: &'static str) -> Self

Constructs a new Client

§Example
let client = Client::new("TOKEN_HERE");
client.get_user(...).unwrap();
Examples found in repository?
examples/simple.rs (line 7)
6fn main() {
7  let client = Client::new("SOME_RANDOM_TOKEN_HERE");
8  
9  let user = client.get_user("Cookiezi", Modes::Standard, 10)
10    .unwrap();
11
12  println!("{}", user[0].username);
13}

Trait Implementations§

Source§

impl BeatmapMethods for Client

Source§

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>, ()>

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>, ()>

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>, ()>

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

Source§

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>, ()>

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>, ()>

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>

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Err = <U as TryFrom<T>>::Err

Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Err>

Source§

impl<T> ErasedDestructor for T
where T: 'static,