[][src]Struct mcquery::FullQueryResponse

pub struct FullQueryResponse {
    pub kv: HashMap<String, String>,
    pub players: Vec<String>,
    pub software: Option<String>,
    pub plugins: Option<Vec<String>>,
    // some fields omitted
}

Response to a full query

Fields

kv: HashMap<String, String>

Additional server information

players: Vec<String>

Names of players currently online

software: Option<String>

The software string. Empty if vanilla server or not supported

plugins: Option<Vec<String>>

Plugins used on the server. Empty if vanilla server or not supported

Trait Implementations

impl Clone for FullQueryResponse[src]

impl Debug for FullQueryResponse[src]

impl Eq for FullQueryResponse[src]

impl PartialEq<FullQueryResponse> for FullQueryResponse[src]

impl StructuralEq for FullQueryResponse[src]

impl StructuralPartialEq for FullQueryResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for FullQueryResponse

impl Send for FullQueryResponse

impl Sync for FullQueryResponse

impl Unpin for FullQueryResponse

impl UnwindSafe for FullQueryResponse

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