[][src]Struct ts3_query::ServerGroup

pub struct ServerGroup {
    pub sgid: ServerGroupID,
    pub name: String,
    pub type: i32,
    pub iconid: IconHash,
    pub savedb: bool,
}

Server Group returned from server_group_list. Field names are according to the query protocol.

Fields

sgid: ServerGroupID

Identifier for this server group

name: Stringtype: i32

Group type: template,regular,query type use r#type to specify in rust

iconid: IconHashsavedb: bool

Trait Implementations

impl Debug for ServerGroup[src]

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, 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.