pub struct UserProfileOffset {
pub ptr: i32,
pub id: i32,
pub username: i32,
pub pp: i32,
pub rankedscore: i32,
pub level: i32,
pub playcount: i32,
pub rank: i32,
pub playmode: i32,
pub accuracy: i32,
pub country_code: i32,
pub bancho_status: i32,
}Fields§
§ptr: i32§id: i32§username: i32§pp: i32§rankedscore: i32§level: i32§playcount: i32§rank: i32§playmode: i32§accuracy: i32§country_code: i32§bancho_status: i32Auto Trait Implementations§
impl Freeze for UserProfileOffset
impl RefUnwindSafe for UserProfileOffset
impl Send for UserProfileOffset
impl Sync for UserProfileOffset
impl Unpin for UserProfileOffset
impl UnwindSafe for UserProfileOffset
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