[][src]Struct kucoin_rs::kucoin::model::websocket::Level2

pub struct Level2 {
    pub sequence_start: i64,
    pub sequence_end: i64,
    pub symbol: String,
    pub changes: Level2Changes,
}

Fields

sequence_start: i64sequence_end: i64symbol: Stringchanges: Level2Changes

Trait Implementations

impl Clone for Level2[src]

impl Debug for Level2[src]

impl<'de> Deserialize<'de> for Level2[src]

impl Serialize for Level2[src]

Auto Trait Implementations

impl RefUnwindSafe for Level2

impl Send for Level2

impl Sync for Level2

impl Unpin for Level2

impl UnwindSafe for Level2

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,