#[repr(C)]pub struct Amounts {
pub claimable_time_window: u64,
pub recent_time_window: u64,
pub request_expiration: u64,
pub oracle_max_age: u64,
pub oracle_max_timestamp_range: u64,
pub oracle_max_future_timestamp_excess: u64,
pub adl_prices_max_staleness: u64,
pub min_position_age_for_manual_close: u64,
pub market_closed_prices_max_staleness: u64,
pub reserved: [u64; 124],
}Expand description
Amounts.
Fields§
§claimable_time_window: u64§recent_time_window: u64§request_expiration: u64§oracle_max_age: u64§oracle_max_timestamp_range: u64§oracle_max_future_timestamp_excess: u64§adl_prices_max_staleness: u64§min_position_age_for_manual_close: u64§market_closed_prices_max_staleness: u64§reserved: [u64; 124]Trait Implementations§
impl Copy for Amounts
impl Pod for Amounts
Auto Trait Implementations§
impl Freeze for Amounts
impl RefUnwindSafe for Amounts
impl Send for Amounts
impl Sync for Amounts
impl Unpin for Amounts
impl UnwindSafe for Amounts
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.