nautilus_data::mocks

Struct MockDataClient

source
pub struct MockDataClient {
    pub client_id: ClientId,
    pub venue: Venue,
    /* private fields */
}

Fields§

§client_id: ClientId§venue: Venue

Implementations§

source§

impl MockDataClient

source

pub const fn new( cache: Rc<RefCell<Cache>>, msgbus: Rc<RefCell<MessageBus>>, client_id: ClientId, venue: Venue, ) -> Self

Trait Implementations§

source§

impl DataClient for MockDataClient

source§

fn subscribe(&mut self, _data_type: &DataType) -> Result<()>

Parse command and call specific function

source§

fn client_id(&self) -> ClientId

source§

fn venue(&self) -> Option<Venue>

source§

fn start(&self)

source§

fn stop(&self)

source§

fn reset(&self)

source§

fn dispose(&self)

source§

fn is_connected(&self) -> bool

source§

fn is_disconnected(&self) -> bool

source§

fn subscribe_instruments(&mut self, _venue: Option<&Venue>) -> Result<()>

source§

fn subscribe_instrument(&mut self, _instrument_id: &InstrumentId) -> Result<()>

source§

fn subscribe_order_book_deltas( &mut self, _instrument_id: &InstrumentId, _book_type: BookType, _depth: Option<usize>, ) -> Result<()>

source§

fn subscribe_order_book_snapshots( &mut self, instrument_id: &InstrumentId, book_type: BookType, depth: Option<usize>, ) -> Result<()>

source§

fn subscribe_quote_ticks(&mut self, instrument_id: &InstrumentId) -> Result<()>

source§

fn subscribe_trade_ticks(&mut self, instrument_id: &InstrumentId) -> Result<()>

source§

fn subscribe_bars(&mut self, bar_type: &BarType) -> Result<()>

source§

fn subscribe_instrument_status( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn subscribe_instrument_close( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn unsubscribe(&mut self, data_type: &DataType) -> Result<()>

source§

fn unsubscribe_instruments(&mut self, venue: Option<&Venue>) -> Result<()>

source§

fn unsubscribe_instrument(&mut self, instrument_id: &InstrumentId) -> Result<()>

source§

fn unsubscribe_order_book_deltas( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn unsubscribe_order_book_snapshots( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn unsubscribe_quote_ticks( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn unsubscribe_trade_ticks( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn unsubscribe_bars(&mut self, bar_type: &BarType) -> Result<()>

source§

fn unsubscribe_instrument_status( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn unsubscribe_instrument_close( &mut self, instrument_id: &InstrumentId, ) -> Result<()>

source§

fn request_data(&self, request: DataRequest)

source§

fn request_instruments( &self, correlation_id: UUID4, venue: Venue, start: Option<UnixNanos>, end: Option<UnixNanos>, ) -> Vec<InstrumentAny>

source§

fn request_instrument( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, ) -> InstrumentAny

source§

fn request_order_book_snapshot( &self, correlation_id: UUID4, instrument_id: InstrumentId, depth: Option<usize>, ) -> Payload

source§

fn request_quote_ticks( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, ) -> Vec<QuoteTick>

source§

fn request_trade_ticks( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, ) -> Vec<TradeTick>

source§

fn request_bars( &self, correlation_id: UUID4, bar_type: BarType, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, ) -> Vec<Bar>

Auto Trait Implementations§

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more