pub struct ContentHead {
pub pkg_num: Option<i32>,
pub pkg_index: Option<i32>,
pub div_seq: Option<i32>,
pub auto_reply: Option<i32>,
}Fields
pkg_num: Option<i32>pkg_index: Option<i32>div_seq: Option<i32>auto_reply: Option<i32>Implementations
sourceimpl ContentHead
impl ContentHead
sourcepub fn pkg_num(&self) -> i32
pub fn pkg_num(&self) -> i32
Returns the value of pkg_num, or the default value if pkg_num is unset.
sourcepub fn pkg_index(&self) -> i32
pub fn pkg_index(&self) -> i32
Returns the value of pkg_index, or the default value if pkg_index is unset.
sourcepub fn div_seq(&self) -> i32
pub fn div_seq(&self) -> i32
Returns the value of div_seq, or the default value if div_seq is unset.
sourcepub fn auto_reply(&self) -> i32
pub fn auto_reply(&self) -> i32
Returns the value of auto_reply, or the default value if auto_reply is unset.
Trait Implementations
sourceimpl Clone for ContentHead
impl Clone for ContentHead
sourcefn clone(&self) -> ContentHead
fn clone(&self) -> ContentHead
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ContentHead
impl Debug for ContentHead
sourceimpl Default for ContentHead
impl Default for ContentHead
sourceimpl Message for ContentHead
impl Message for ContentHead
sourcefn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
sourcefn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
Encodes the message to a buffer. Read more
sourcefn encode_to_vec(&self) -> Vec<u8, Global>
fn encode_to_vec(&self) -> Vec<u8, Global>
Encodes the message to a newly allocated buffer.
sourcefn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
Encodes the message with a length-delimiter to a buffer. Read more
sourcefn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>
fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>
Encodes the message with a length-delimiter to a newly allocated buffer.
sourcefn decode<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
fn decode<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
Decodes an instance of the message from a buffer. Read more
sourcefn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
sourcefn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
Decodes an instance of the message from a buffer, and merges it into self. Read more
sourcefn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
Decodes a length-delimited instance of the message from buffer, and
merges it into self. Read more
sourceimpl PartialEq<ContentHead> for ContentHead
impl PartialEq<ContentHead> for ContentHead
sourcefn eq(&self, other: &ContentHead) -> bool
fn eq(&self, other: &ContentHead) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ContentHead) -> bool
fn ne(&self, other: &ContentHead) -> bool
This method tests for !=.
impl StructuralPartialEq for ContentHead
Auto Trait Implementations
impl RefUnwindSafe for ContentHead
impl Send for ContentHead
impl Sync for ContentHead
impl Unpin for ContentHead
impl UnwindSafe for ContentHead
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more