Struct fugle::crawler::GetQueryBuilder[][src]

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

Associate options when doing the request.

Implementations

Set a limit param while using dealts request. Default value on fugle API is 0

Example:


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

Set an offset param while using dealts request. Default value on fugle API is 50

Example:


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

To see odd lotter or not. Default value on fugle API is false

Example:


let agent = IntradayBuilder::new().build();

agent.meta("2884")
.odd_lot(true)
.call()?;

agent.quote("2884")
.odd_lot(true)
.call()?;

Send the request.

Example:


let agent = IntradayBuilder::new().build();

agent.meta("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.