[][src]Struct meilisearch_sdk::client::Version

pub struct Version {
    pub commit_sha: String,
    pub build_date: String,
    pub pkg_version: String,
}

Version of a MeiliSearch server. Example:

Version {
   commit_sha: "b46889b5f0f2f8b91438a08a358ba8f05fc09fc1".to_string(),
   build_date: "2019-11-15T09:51:54.278247+00:00".to_string(),
   pkg_version: "0.1.1".to_string(),
}

Fields

commit_sha: Stringbuild_date: Stringpkg_version: String

Trait Implementations

impl<'de> Deserialize<'de> for Version[src]

Auto Trait Implementations

impl RefUnwindSafe for Version

impl Send for Version

impl Sync for Version

impl Unpin for Version

impl UnwindSafe for Version

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.