pub struct ConfigResponse {
pub collateral_asset_id: String,
pub collateral_token_address: String,
pub default_maker_fee: String,
pub default_taker_fee: String,
pub exchange_address: String,
pub max_expected_batch_length_minutes: String,
pub max_fast_withdrawal_amount: String,
pub cancel_order_rate_limiting: CancelOrderRateLimiting,
pub place_order_rate_limiting: PlaceOrderRateLimiting,
}Fields§
§collateral_asset_id: String§collateral_token_address: String§default_maker_fee: String§default_taker_fee: String§exchange_address: String§max_expected_batch_length_minutes: String§max_fast_withdrawal_amount: String§cancel_order_rate_limiting: CancelOrderRateLimiting§place_order_rate_limiting: PlaceOrderRateLimitingTrait Implementations§
Source§impl Clone for ConfigResponse
impl Clone for ConfigResponse
Source§fn clone(&self) -> ConfigResponse
fn clone(&self) -> ConfigResponse
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 moreSource§impl Debug for ConfigResponse
impl Debug for ConfigResponse
Source§impl<'de> Deserialize<'de> for ConfigResponse
impl<'de> Deserialize<'de> for ConfigResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConfigResponse
impl RefUnwindSafe for ConfigResponse
impl Send for ConfigResponse
impl Sync for ConfigResponse
impl Unpin for ConfigResponse
impl UnwindSafe for ConfigResponse
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