pub struct FlagInfo {Show 17 fields
pub grp_msg_kick_admin: i32,
pub grp_msg_hidden_grp: i32,
pub grp_msg_wording_down: i32,
pub frd_msg_get_busi_card: i32,
pub grp_msg_get_official_account: i32,
pub grp_msg_get_pay_in_group: i32,
pub frd_msg_discuss2_many_chat: i32,
pub grp_msg_not_allow_join_grp_invite_not_frd: i32,
pub frd_msg_need_waiting_msg: i32,
pub frd_msg_uint32_need_all_unread_msg: i32,
pub grp_msg_need_auto_admin_wording: i32,
pub grp_msg_get_transfer_group_msg_flag: i32,
pub grp_msg_get_quit_pay_group_msg_flag: i32,
pub grp_msg_support_invite_auto_join: i32,
pub grp_msg_mask_invite_auto_join: i32,
pub grp_msg_get_disbanded_by_admin: i32,
pub grp_msg_get_c2c_invite_join_group: i32,
}
Fields§
§grp_msg_kick_admin: i32
§grp_msg_wording_down: i32
§frd_msg_get_busi_card: i32
§grp_msg_get_official_account: i32
§grp_msg_get_pay_in_group: i32
§frd_msg_discuss2_many_chat: i32
§grp_msg_not_allow_join_grp_invite_not_frd: i32
§frd_msg_need_waiting_msg: i32
§frd_msg_uint32_need_all_unread_msg: i32
§grp_msg_need_auto_admin_wording: i32
§grp_msg_get_transfer_group_msg_flag: i32
§grp_msg_get_quit_pay_group_msg_flag: i32
§grp_msg_support_invite_auto_join: i32
§grp_msg_mask_invite_auto_join: i32
§grp_msg_get_disbanded_by_admin: i32
§grp_msg_get_c2c_invite_join_group: i32
Trait Implementations§
source§impl Message for FlagInfo
impl Message for FlagInfo
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8, Global>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8, Global>where
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>where
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn 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
source§fn 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.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
. Read more