Struct fugle::crawler::Intraday[][src]

pub struct Intraday { /* fields omitted */ }
Expand description

Intraday is the RESTful API queryer to request fugle endpoints.

Implementations

Endpoint

Fetching the current drawing data.

Example:


let agent = IntradayBuilder::new().build();
agent.chart("2884").call()?;

Endpoint

Fetching the current status and statistics.

Example:


let agent = IntradayBuilder::new().build();
agent.quote("2884").call()?;

Endpoint

Fetching today’s basic informations.

Example:


let agent = IntradayBuilder::new().build();
agent.meta("2884").call()?;

Endpoint

Fetching today’s advantage information.

Example:


let agent = IntradayBuilder::new().build();
agent.dealts("2884").call()?;

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.