pub trait UserBuilder {
    // Required method
    fn new<'life0, 'async_trait>(
        self,
        client: &'life0 mut Https
    ) -> Pin<Box<dyn Future<Output = User> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn new<'life0, 'async_trait>( self, client: &'life0 mut Https ) -> Pin<Box<dyn Future<Output = User> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementations on Foreign Types§

source§

impl UserBuilder for &str

source§

fn new<'life0, 'async_trait>( self, client: &'life0 mut Https ) -> Pin<Box<dyn Future<Output = User> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Create a new user by name

source§

impl UserBuilder for u64

source§

fn new<'life0, 'async_trait>( self, client: &'life0 mut Https ) -> Pin<Box<dyn Future<Output = User> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Create a new user with userid

Implementors§