pub struct ClobPositionData {
pub account: String,
pub market_slug: String,
pub positions: Vec<ClobPosition>,
pub token_ids: Vec<String>,
}Fields§
§account: String§market_slug: String§positions: Vec<ClobPosition>§token_ids: Vec<String>Trait Implementations§
Source§impl Clone for ClobPositionData
impl Clone for ClobPositionData
Source§fn clone(&self) -> ClobPositionData
fn clone(&self) -> ClobPositionData
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 ClobPositionData
impl Debug for ClobPositionData
Source§impl<'de> Deserialize<'de> for ClobPositionData
impl<'de> Deserialize<'de> for ClobPositionData
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 ClobPositionData
impl RefUnwindSafe for ClobPositionData
impl Send for ClobPositionData
impl Sync for ClobPositionData
impl Unpin for ClobPositionData
impl UnsafeUnpin for ClobPositionData
impl UnwindSafe for ClobPositionData
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