pub struct PlatformMakerStatusResponse {Show 14 fields
pub schema_version: u16,
pub contract_version: String,
pub market_id: String,
pub maker_id: String,
pub wallet_address: String,
pub server_time_ms: u64,
pub current_slot: String,
pub firm_orders: PlatformMakerFirmOrderSummary,
pub intent: Option<PlatformMakerIntentStatus>,
pub signed_quotes: PlatformMakerSignedQuoteLane,
pub strands: Vec<PlatformMakerStrandStatus>,
pub currents: Vec<PlatformMakerCurrentStatus>,
pub dead_man_guards: Vec<PlatformMakerDeadManGuard>,
pub active_products: u16,
}Expand description
Authenticated, owner-scoped view of the maker’s Strata products in one market: firm orders, intent, Strands, Currents, the signed-quote lane, live exposure, health, and kill state. Nothing about other makers, takers, or liquidity sources crosses this boundary.
Fields§
§schema_version: u16§contract_version: String§market_id: String§maker_id: String§wallet_address: String§server_time_ms: u64§current_slot: String§firm_orders: PlatformMakerFirmOrderSummary§intent: Option<PlatformMakerIntentStatus>§signed_quotes: PlatformMakerSignedQuoteLane§strands: Vec<PlatformMakerStrandStatus>§currents: Vec<PlatformMakerCurrentStatus>§dead_man_guards: Vec<PlatformMakerDeadManGuard>§active_products: u16Count of maker products currently able to fill: an active intent, each enabled unexpired Strand or Current, and resting firm orders (as one).
Trait Implementations§
Source§impl Clone for PlatformMakerStatusResponse
impl Clone for PlatformMakerStatusResponse
Source§fn clone(&self) -> PlatformMakerStatusResponse
fn clone(&self) -> PlatformMakerStatusResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformMakerStatusResponse
impl Debug for PlatformMakerStatusResponse
Source§impl<'de> Deserialize<'de> for PlatformMakerStatusResponse
impl<'de> Deserialize<'de> for PlatformMakerStatusResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerStatusResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerStatusResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformMakerStatusResponse
Source§impl Serialize for PlatformMakerStatusResponse
impl Serialize for PlatformMakerStatusResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformMakerStatusResponse
Auto Trait Implementations§
impl Freeze for PlatformMakerStatusResponse
impl RefUnwindSafe for PlatformMakerStatusResponse
impl Send for PlatformMakerStatusResponse
impl Sync for PlatformMakerStatusResponse
impl Unpin for PlatformMakerStatusResponse
impl UnsafeUnpin for PlatformMakerStatusResponse
impl UnwindSafe for PlatformMakerStatusResponse
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