pub struct BacktestClient { /* private fields */ }Expand description
Backtest WebSocket client configured with a base URL and API key.
Build with BacktestClient::builder, which supports optional timeouts and
raw message logging.
Implementations§
Source§impl BacktestClient
impl BacktestClient
Sourcepub fn builder() -> BacktestClientBuilder
pub fn builder() -> BacktestClientBuilder
Create an instance of BacktestClient using the builder syntax
Source§impl BacktestClient
impl BacktestClient
Sourcepub async fn create_session(
&self,
create: CreateSession,
) -> BacktestClientResult<BacktestSession>
pub async fn create_session( &self, create: CreateSession, ) -> BacktestClientResult<BacktestSession>
Create a backtest session by connecting and sending a CreateBacktestSession request.
Sourcepub async fn create_sessions(
&self,
create: CreateSession,
) -> BacktestClientResult<Vec<String>>
pub async fn create_sessions( &self, create: CreateSession, ) -> BacktestClientResult<Vec<String>>
Create one or many sessions and return the resulting session IDs.
When CreateSession.parallel is true, this may return many IDs.
Sourcepub async fn create_sessions_with_progress(
&self,
create: CreateSession,
on_session_created: impl FnMut(String) + Send,
) -> BacktestClientResult<Vec<String>>
pub async fn create_sessions_with_progress( &self, create: CreateSession, on_session_created: impl FnMut(String) + Send, ) -> BacktestClientResult<Vec<String>>
Create one or many sessions and stream each successfully created session ID.
on_session_created is called for each streamed SessionCreated response.
Sourcepub async fn attach_session(
&self,
session_id: impl Into<String>,
last_sequence: Option<u64>,
) -> BacktestClientResult<BacktestSession>
pub async fn attach_session( &self, session_id: impl Into<String>, last_sequence: Option<u64>, ) -> BacktestClientResult<BacktestSession>
Attach to an existing backtest session over the control websocket.
Trait Implementations§
Source§impl Clone for BacktestClient
impl Clone for BacktestClient
Source§fn clone(&self) -> BacktestClient
fn clone(&self) -> BacktestClient
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BacktestClient
impl RefUnwindSafe for BacktestClient
impl Send for BacktestClient
impl Sync for BacktestClient
impl Unpin for BacktestClient
impl UnsafeUnpin for BacktestClient
impl UnwindSafe for BacktestClient
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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