Struct xio_webapi::ApiDescription[][src]

pub struct ApiDescription {
    pub version: ApiVersion,
    pub description: String,
    pub uuid: Uuid,
}

A description of the XIO web API.

Fields

The version of the API.

A human-readable description of the API.

The uuid of the API. Must be the uuid that can be retrieved from the api_uuid() function.

Trait Implementations

impl Clone for ApiDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ApiDescription
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ApiDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ApiDescription
[src]

impl MustNotBeSkipped for ApiDescription
[src]

impl Default for ApiDescription
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations