Struct fluvio_index::IndexMetadata[][src]

pub struct IndexMetadata {
    pub minimum_client_version: Version,
}

Fields

minimum_client_version: Version

The minimum version of a client which must be used in order to properly access the index. If a client finds itself with a lower version than this minimum, it must prompt the user for an update before it can proceed.

This version number corresponds to the crate version of the fluvio-package-index crate.

Implementations

impl IndexMetadata[src]

pub fn update_required(&self) -> bool[src]

This checks whether this version of the client is compatible with the given index.

This will return true if the minimum_client_version of the index is greater than this version of the fluvio-package-index crate.

Trait Implementations

impl Debug for IndexMetadata[src]

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

impl Serialize for IndexMetadata[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,