[][src]Struct gantryclient::CatalogQuery

pub struct CatalogQuery {
    pub query_type: i32,
    pub issuer: String,
}

Fields

query_type: i32issuer: String

Optional issuer filter

Methods

impl CatalogQuery[src]

pub fn query_type(&self) -> QueryType[src]

Returns the enum value of query_type, or the default if the field is set to an invalid enum value.

pub fn set_query_type(&mut self, value: QueryType)[src]

Sets query_type to the provided enum value.

Trait Implementations

impl Clone for CatalogQuery[src]

impl Debug for CatalogQuery[src]

impl Default for CatalogQuery[src]

impl Message for CatalogQuery[src]

impl PartialEq<CatalogQuery> for CatalogQuery[src]

impl StructuralPartialEq for CatalogQuery[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> Clear for T where
    T: InitializableFromZeroed + ?Sized

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

impl<T> InitializableFromZeroed for T where
    T: Default

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

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