pub struct AdjustResult {
pub prices: Option<Vec<ClosingPrice>>,
pub info: Option<AdjustInfo>,
}Expand description
Result of adjust.
Fields§
§prices: Option<Vec<ClosingPrice>>§info: Option<AdjustInfo>Trait Implementations§
Source§impl Clone for AdjustResult
impl Clone for AdjustResult
Source§fn clone(&self) -> AdjustResult
fn clone(&self) -> AdjustResult
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 moreAuto Trait Implementations§
impl Freeze for AdjustResult
impl RefUnwindSafe for AdjustResult
impl Send for AdjustResult
impl Sync for AdjustResult
impl Unpin for AdjustResult
impl UnsafeUnpin for AdjustResult
impl UnwindSafe for AdjustResult
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