Skip to main content

NNHeader

Struct NNHeader 

Source
pub struct NNHeader {
    pub proto_ver: u8,
    pub client_type: u8,
    pub client_ver: u16,
    pub lang_id: u8,
    pub user_id: u32,
    pub is_push: bool,
    pub is_compressed: bool,
    pub serial_no: u32,
    pub cmd_id: u16,
    pub body_len: u32,
    pub reserved: [u8; 8],
    pub ex_head_len: u16,
}
Expand description

内部协议帧头

Fields§

§proto_ver: u8§client_type: u8§client_ver: u16§lang_id: u8§user_id: u32§is_push: bool

C++ ProtocolHeader::flags_.push_.

§is_compressed: bool

C++ ProtocolHeader::flags_.compress_.

§serial_no: u32§cmd_id: u16§body_len: u32

真实 body 长度(不含 ex_head)—— 对齐 C++ GetBodyLen() 语义

§reserved: [u8; 8]

reserved 8 字节,行情命令用 [0]=market_type [1]=ex_type 注意:C++ reserved 只有 8 字节,后 2 字节是 ex_head_len

§ex_head_len: u16

扩展头长度(FtnnExtendHead protobuf 序列化后字节数)

Implementations§

Source§

impl NNHeader

Source

pub fn new(cmd_id: u16, serial_no: u32) -> Self

Source

pub fn encode(&self, dst: &mut BytesMut)

编码到字节流。body_len 字段按真实 body 长度传入(不含 ex_head), 实际上线时我们 不发送 ex_head(ex_head_len=0),所以 wire 上的 ex_head_body_len = body_len

Source

pub fn decode(src: &BytesMut) -> Result<Option<Self>, FutuError>

Source

pub fn is_compressed(&self) -> bool

Source

pub fn flags(&self) -> u8

Trait Implementations§

Source§

impl Clone for NNHeader

Source§

fn clone(&self) -> NNHeader

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NNHeader

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more