pub struct DXCProtocolHeader {
pub sender_key: ServiceKey,
pub receive_key: ServiceKey,
pub from_address: String,
pub dxc_id: String,
pub dxc_version: String,
pub channel_id: i64,
pub conn_id: i64,
pub request_id: i64,
pub timeout: u32,
pub msg_type: i32,
/* private fields */
}
Fields§
§sender_key: ServiceKey
§receive_key: ServiceKey
§from_address: String
§dxc_id: String
§dxc_version: String
§channel_id: i64
§conn_id: i64
§request_id: i64
§timeout: u32
§msg_type: i32
Implementations§
Source§impl DXCProtocolHeader
impl DXCProtocolHeader
pub fn skip_from_bytes(bytes: &[u8]) -> u32
Trait Implementations§
Source§impl Debug for DXCProtocolHeader
impl Debug for DXCProtocolHeader
Source§impl Default for DXCProtocolHeader
impl Default for DXCProtocolHeader
Source§impl RequestMessage for DXCProtocolHeader
impl RequestMessage for DXCProtocolHeader
fn compute_size(&self) -> u64
fn serial_with_output_stream( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), Status>
fn parse_from_input_stream( &mut self, is: &mut CodedInputStream<'_>, ) -> Result<(), Status>
fn compute_size_with_tag_and_len(&self) -> u64
fn serial_with_tag_and_len(&self, os: &mut CodedOutputStream<'_>)
fn serial(&self) -> Result<Vec<u8>, String>
fn parse_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Status>
fn parse_from_input_stream_with_tag_and_len( &mut self, is: &mut CodedInputStream<'_>, )
fn parse_from_bytes_return_num(&mut self, bytes: &[u8]) -> Result<u64, Status>
Auto Trait Implementations§
impl !Freeze for DXCProtocolHeader
impl RefUnwindSafe for DXCProtocolHeader
impl Send for DXCProtocolHeader
impl Sync for DXCProtocolHeader
impl Unpin for DXCProtocolHeader
impl UnwindSafe for DXCProtocolHeader
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more