Struct couchdb::Root [] [src]

pub struct Root {
    pub couchdb: String,
    pub uuid: Uuid,
    pub vendor: Vendor,
    pub version: Version,
    // some fields omitted
}

Root contains the content of a CouchDB server's root resource.

Summary

Remarks

An application may obtain a CouchDB server's root resource by sending an HTTP request to GET /.

Compatibility

Root contains a dummy private member in order to prevent applications from directly constructing a Root instance. This allows new fields to be added to Root in future releases without it being a breaking change.

Fields

Trait Implementations

impl Clone for Root
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Root
[src]

Formats the value using the given formatter.

impl Default for Root
[src]

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

impl Eq for Root
[src]

impl Hash for Root
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Root
[src]

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

This method tests for !=.