Struct ricq_core::pb::GroupMemberInfo
source · pub struct GroupMemberInfo {Show 35 fields
pub uin: i64,
pub result: i32,
pub errmsg: Vec<u8>,
pub is_friend: bool,
pub remark: Vec<u8>,
pub is_concerned: bool,
pub credit: i32,
pub card: Vec<u8>,
pub sex: i32,
pub location: Vec<u8>,
pub nick: Vec<u8>,
pub age: i32,
pub lev: Vec<u8>,
pub join: i64,
pub last_speak: i64,
pub gbar_title: Vec<u8>,
pub gbar_url: Vec<u8>,
pub gbar_cnt: i32,
pub is_allow_mod_card: bool,
pub is_vip: bool,
pub is_year_vip: bool,
pub is_super_vip: bool,
pub is_super_qq: bool,
pub vip_lev: i32,
pub role: i32,
pub location_shared: bool,
pub int64_distance: i64,
pub concern_type: i32,
pub special_title: Vec<u8>,
pub special_title_expire_time: i32,
pub phone_num: Vec<u8>,
pub job: Vec<u8>,
pub medal_id: i32,
pub level: i32,
pub honor: String,
}
Fields§
§uin: i64
§result: i32
§errmsg: Vec<u8>
§is_friend: bool
§remark: Vec<u8>
§is_concerned: bool
§credit: i32
§card: Vec<u8>
§sex: i32
§location: Vec<u8>
§nick: Vec<u8>
§age: i32
§lev: Vec<u8>
§join: i64
§last_speak: i64
§gbar_title: Vec<u8>
repeated CustomEntry customEnties = 16; repeated GBarInfo gbarConcerned = 17;
gbar_url: Vec<u8>
§gbar_cnt: i32
§is_allow_mod_card: bool
§is_vip: bool
§is_year_vip: bool
§is_super_vip: bool
§is_super_qq: bool
§vip_lev: i32
§role: i32
§int64_distance: i64
§concern_type: i32
§special_title: Vec<u8>
§special_title_expire_time: i32
§phone_num: Vec<u8>
FlowersEntry flowerEntry = 33; TeamEntry teamEntry = 34;
job: Vec<u8>
§medal_id: i32
§level: i32
§honor: String
Trait Implementations§
source§impl Clone for GroupMemberInfo
impl Clone for GroupMemberInfo
source§fn clone(&self) -> GroupMemberInfo
fn clone(&self) -> GroupMemberInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GroupMemberInfo
impl Debug for GroupMemberInfo
source§impl Default for GroupMemberInfo
impl Default for GroupMemberInfo
source§impl Message for GroupMemberInfo
impl Message for GroupMemberInfo
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