Struct robinhood::Client [] [src]

pub struct Client {
    pub client: HTTPClient,
    // some fields omitted
}

A client/app is represented here

Fields

This is documentation for the Client structure.

Examples

Methods

impl Client
[src]

[src]

Creates a new client builder

More words here. Where do they end up?

Arguments

  • None

Example

use robinhood::Client;
let person = Client::new().build();

[src]

[src]

Creates a new client builder

Arguments

  • name - A string slice that holds the name of the person

Example

// You can have rust code between fences inside the comments
// If you pass --test to Rustdoc, it will even test it for you!
use robinhood::Client;
let person = Client::new().build();

[src]

[src]

[src]