michromer::client

Struct LevelClient

Source
pub struct LevelClient<T: HttpClient + Clone> {
    pub level: Level,
    pub base_url: String,
    /* private fields */
}
Expand description

Stockfighter client for a specific level. The stock api is defined here It’s wrapper around an http client. As such it can return errors for parsing or for network issues.

Fields§

§level: Level§base_url: String

Implementations§

Source§

impl<T: HttpClient + Clone> LevelClient<T>

Source

pub fn heart_beat(&self) -> Result<HeartBeatResponse>

See if this Level is up.

This should really only be used to sanity check that the level hasn’t been torn down.

Source

pub fn venue_heart_beat(&self, venue: &str) -> Result<VenueHeartBeatResponse>

Check if a venue is ok.

Source

pub fn stock_list(&self, venue: &str) -> Result<StockListResponse>

Get a list of all the stocks this venue can accept trades for.

§Errors

Errors out when: http fails parsing fails

Source

pub fn orderbook(&self, venue: &str, stock: &str) -> Result<OrderbookResponse>

Get a copy of the venue’s order book. Stockfighter suggests that this will be a slow operation that should be done as little as possible.

Source

pub fn quote(&self, venue: &str, stock: &str) -> Result<QuoteResponse>

Ask a venue about the current state of a stock.

Source

pub fn order(&self, o: &Order) -> Result<OrderResponse>

Send in an order, and get back a response.

Source

pub fn order_status( &self, venue: &str, stock: &str, id: u64, ) -> Result<OrderResponse>

Find out how a specific order on a specific venue is doing.

Source

pub fn delete_order( &self, venue: &str, stock: &str, id: u64, ) -> Result<OrderResponse>

Try and cancel an order.

Source

pub fn new(http_client: T, level: Level, base_url: &str) -> LevelClient<T>

Constructs a new level client.

Trait Implementations§

Source§

impl<T: Clone + HttpClient + Clone> Clone for LevelClient<T>

Source§

fn clone(&self) -> LevelClient<T>

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<T: Debug + HttpClient + Clone> Debug for LevelClient<T>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> Freeze for LevelClient<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for LevelClient<T>
where T: RefUnwindSafe,

§

impl<T> Send for LevelClient<T>
where T: Send,

§

impl<T> Sync for LevelClient<T>
where T: Sync,

§

impl<T> Unpin for LevelClient<T>
where T: Unpin,

§

impl<T> UnwindSafe for LevelClient<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where 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> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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

Source§

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

impl<T> Typeable for T
where T: Any,

Source§

fn get_type(&self) -> TypeId

Get the TypeId of this object.