Struct gapi_grpc::google::api::expr::v1beta1::DeclType[][src]

pub struct DeclType {
    pub id: i32,
    pub type: String,
    pub type_params: Vec<DeclType>,
}

The declared type of a variable.

Extends runtime type values with extra information used for type checking and dispatching.

Fields

id: i32

The expression id of the declared type, if applicable.

type: String

The type name, e.g. ‘int’, ‘my.type.Type’ or ‘T’

type_params: Vec<DeclType>

An ordered list of type parameters, e.g. <string, int>. Only applies to a subset of types, e.g. map, list.

Trait Implementations

impl Clone for DeclType[src]

impl Debug for DeclType[src]

impl Default for DeclType[src]

impl Message for DeclType[src]

impl PartialEq<DeclType> for DeclType[src]

impl StructuralPartialEq for DeclType[src]

Auto Trait Implementations

impl RefUnwindSafe for DeclType

impl Send for DeclType

impl Sync for DeclType

impl Unpin for DeclType

impl UnwindSafe for DeclType

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

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>, 
[src]

impl<T> WithSubscriber for T[src]