pub enum Topic {
Orderbook {
market_id: i64,
},
AssetPrice {
feed_id: i64,
},
PolymarketChance {
market_id: i64,
},
KalshiChance {
market_id: i64,
},
WalletEvents {
jwt: String,
},
Raw(String),
}Expand description
Subscription topic for the predict.fun WebSocket feed.
Variants§
Orderbook
Real-time orderbook snapshots for a market.
Topic string: predictOrderbook/{market_id}
AssetPrice
Asset price updates from oracle feeds.
Topic string: assetPriceUpdate/{feed_id}
Known feeds: 1=BTC, 4=ETH
PolymarketChance
Polymarket chance/probability for a market (cross-venue reference).
Topic string: polymarketChance/{market_id}
KalshiChance
Kalshi chance/probability for a market (cross-venue reference).
Topic string: kalshiChance/{market_id}
WalletEvents
Wallet events (fills, settlements). Requires JWT auth token.
Topic string: predictWalletEvents/{jwt}
Raw(String)
Raw topic string for undocumented/custom topics.
Implementations§
Source§impl Topic
impl Topic
Sourcepub fn to_topic_string(&self) -> String
pub fn to_topic_string(&self) -> String
Convert to the wire-format topic string.
Sourcepub fn from_topic_string(s: &str) -> Self
pub fn from_topic_string(s: &str) -> Self
Parse a wire-format topic string back into a Topic.
Trait Implementations§
impl Eq for Topic
impl StructuralPartialEq for Topic
Auto Trait Implementations§
impl Freeze for Topic
impl RefUnwindSafe for Topic
impl Send for Topic
impl Sync for Topic
impl Unpin for Topic
impl UnsafeUnpin for Topic
impl UnwindSafe for Topic
Blanket Implementations§
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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