Enum volt::user::UserResult

source ·
pub enum UserResult {
    User(User),
    UserFlags(UserFlags),
    UserProfile(UserProfile),
    String(String),
}
Expand description

The enum for data returning

The variations of this enum are the types that are returned after .run() is called

Note!:

If any of the methods that impliment this enum are called the type will change

Variants§

§

User(User)

§

UserFlags(UserFlags)

§

UserProfile(UserProfile)

§

String(String)

Implementations§

source§

impl UserResult

source

pub fn id(&self) -> String

Returns a users id

Returns:

The users id as a string

Panics!:

This funtion will panic if the enum variant UserResult::User has not been called

source

pub fn name(&self) -> String

Returns a users name

Returns:

The users name as a string

Panics!:

This funtion will panic if the enum variant UserResult::User has not been called

source

pub fn avatar(&self) -> Image

Returns a users avatar

Returns:

The users avatar data in the form of a struct called image that can be parsed down to get the specific values

Panics!:

This funtion will panic if the enum variant UserResult::User has not been called

source

pub fn badges(&self) -> Vec<&str>

Returns the badges a users has

Badges can be earned on Revolt for different things (will explain below)

The API shows badges as the sum of the values of all the badges

Badge Values:

  • 1: Developer (Develops Revolt)
  • 2: Translator (Translated Revolt into another language)
  • 4: Supporter (Supported Revolt with a donation)
  • 8: Responsibly Disclosed Bug(s) (Disclosed a bug responibly)
  • 16: Founder (Founded Revolt)
  • 32: Platform Moderation (Moderates Revolt)
  • 64: Active Supporter (Activlty supports Revolt)
  • 128: Paw (🦊🦝)
  • 256: Early Adopter (One of the first 1000 users)
  • 512: ReservedRelevantJokeBadge1 (Amogus)
  • 1024 ReservedRelevantJokeBadge2 (Amogus Troll Face)
Returns

A vec<&str> of the badges the user has earned in order from highest value to lowest value

Panics!:

This funtion will panic if the enum variant UserResult::User has not been called

source

pub fn flags(&self) -> usize

Returns the users flags

Flags are information about the users account status on revolt

  • 1: Suspended
  • 2: Deleted
  • 4: Banned
Returns:

The users flags as a usize

Panics!:

This function will panic if fetch_user_flags() was not called

source

pub fn background(&self) -> Image

Returns a users background image

Returns:

The users background data in the form of a struct called image that can be parsed down to get the specific values

Panics!:

This funtion will panic if the enum variant UserResult::UserProfile has not been called

source

pub fn status(&self) -> String

Returns the status text of a user

Returns:

The status text of a user as a string

Note:

This function takes both UserResult::UserProfile and UserResult::User

When UserResult::User is called the value may be “None” if there was no status or there was and error parsing the status

Panics!:

This function will panic if fetch_user_flags was called before

Trait Implementations§

source§

impl Clone for UserResult

source§

fn clone(&self) -> UserResult

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UserResult

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for UserResult

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq<UserResult> for UserResult

source§

fn eq(&self, other: &UserResult) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for UserResult

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for UserResult

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,