[][src]Struct coolq_sdk_rust::targets::group::GroupMember

pub struct GroupMember {
    pub group_id: i64,
    pub user_id: i64,
    pub nickname: String,
    pub card: String,
    pub sex: UserSex,
    pub age: i32,
    pub area: String,
    pub join_time: i32,
    pub last_sent_time: i32,
    pub level: String,
    pub role: GroupRole,
    pub unfriendly: bool,
    pub title: String,
    pub title_expire_time: i32,
    pub card_changeable: bool,
    pub authority: Authority,
}

Fields

group_id: i64user_id: i64nickname: Stringcard: Stringsex: UserSexage: i32area: Stringjoin_time: i32last_sent_time: i32level: Stringrole: GroupRoleunfriendly: booltitle: Stringtitle_expire_time: i32card_changeable: boolauthority: Authority

Trait Implementations

impl Clone for GroupMember[src]

impl Debug for GroupMember[src]

impl SendMessage for GroupMember[src]

impl TryFrom<Convert<*const i8>> for GroupMember[src]

type Error = IoError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.