pub struct Coinbase {
    pub ids: SubscriptionIds,
}
Expand description

Coinbase Subscriber & ExchangeTransformer implementor for the collection of Spot & Futures data.

Fields

ids: SubscriptionIds

Implementations

Determine the Coinbase channel metadata associated with an input Barter Subscription. This includes the Coinbase &str channel, and a String market identifier. Both are used to build an Coinbase subscription payload.

Example Ok return: Ok(“matches”, “BTC-USD”) where channel == “matches” & market == “BTC-USD”.

Build a Coinbase compatible subscription message using the channel & market provided.

Build a Coinbase compatible SubscriptionId using the channel & market provided. This is used to associate Coinbase data structures received over the WebSocket with it’s original Barter Subscription.

eg/ SubscriptionId(“matches|ETH-USD”)

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Unique identifier for an ExchangeTransformer.
Constructs a new ExchangeTransformer using a transmitter to the WsSink and the SubscriptionIds HashMap. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more
Deserialisable type that this Subscriber expects to receive from the exchange in response to Subscription requests. Implements Validator in order to determine if the SubResponse communicates a successful outcome. Read more
Returns the Base URL of the exchange to establish a connection with.
Uses the provided Barter Subscriptions to build exchange specific subscription payloads. Generates a SubscriptionIds Hashmap that is used by an ExchangeTransformer to identify the Barter Subscriptions associated with received messages. Read more
Initialises a WebSocket connection, actions the provided collection of Barter Subscriptions, and validates that the Subscription were accepted by the exchange. Read more
Uses the provided WebSocket connection to consume Subscription responses and validate their outcomes. Read more
Return the expected Duration in which the exchange will respond to all actioned WebSocket Subscription requests. Read more

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more