Struct DataFeed

Source
pub struct DataFeed { /* private fields */ }
Expand description

Main client for interacting with the Pyth Network API

Implementations§

Source§

impl DataFeed

Source

pub fn new(subscriptions: Subscriptions) -> Self

Create a new DataFeed instance with the given subscriptions

Source

pub async fn on_ready<F>(&self, callback: F)
where F: FnMut(Value) + Send + 'static,

Initialize the data feed and call the callback when ready

§Arguments
  • callback - Function to call when the data feed is ready with config data
Source

pub async fn search_symbols<F>( &self, user_input: &str, _exchange: &str, _symbol_type: &str, on_result_ready_callback: F, )
where F: FnMut(Value) + Send + 'static,

Search for symbols matching the given query

§Arguments
  • user_input - Search query string
  • exchange - Exchange filter (currently unused)
  • symbol_type - Symbol type filter (currently unused)
  • on_result_ready_callback - Callback for when search results are ready
Source

pub async fn resolve_symbol<F1, F2>( &self, symbol_name: &str, on_symbol_resolved_callback: F1, on_resolve_error_callback: F2, )
where F1: FnMut(Value) + Send + 'static, F2: FnMut(&str) + Send + 'static,

Resolve symbol information for the given symbol name

§Arguments
  • symbol_name - Name of the symbol to resolve
  • on_symbol_resolved_callback - Callback for successful resolution
  • on_resolve_error_callback - Callback for resolution errors
Source

pub async fn get_bars<F1, F2>( &self, symbol_info: &SymbolInfo, resolution: &str, period_params: &PeriodParams, on_history_callback: F1, _on_error_callback: F2, )
where F1: FnMut(Vec<Bar>, bool) + Send + 'static, F2: FnMut(Error) + Send + 'static,

Get historical bar data for a symbol

§Arguments
  • symbol_info - Symbol information
  • resolution - Time resolution (e.g., “1D”, “1H”)
  • period_params - Time period parameters
  • on_history_callback - Callback for historical data
  • on_error_callback - Callback for errors
Source

pub async fn subscribe_bars( &self, symbol_info: SymbolInfo, resolution: String, on_realtime_callback: UnboundedSender<Bar>, subscriber_uid: String, _on_reset_cache_needed_callback: Option<fn()>, )

Subscribe to real-time bar updates for a symbol

§Arguments
  • symbol_info - Symbol information
  • resolution - Time resolution
  • on_realtime_callback - Channel for receiving bar updates
  • subscriber_uid - Unique identifier for this subscription
  • on_reset_cache_needed_callback - Optional callback for cache resets
Source

pub async fn unsubscribe_bars(&self, subscriber_uid: &str)

Unsubscribe from bar updates

§Arguments
  • subscriber_uid - Unique identifier of the subscription to remove
Source

pub fn get_last_bar(&self, ticker: &str) -> Option<Bar>

Get the cached last bar for a symbol, if available

Source

pub fn set_last_bar(&self, ticker: String, bar: Bar)

Manually set the last bar for a symbol in the cache

Trait Implementations§

Source§

impl Clone for DataFeed

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
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> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,