Struct gapi_grpc::google::api::expr::v1alpha1::decl::function_decl::Overload[][src]

pub struct Overload {
    pub overload_id: String,
    pub params: Vec<Type>,
    pub type_params: Vec<String>,
    pub result_type: Option<Type>,
    pub is_instance_function: bool,
    pub doc: String,
}

An overload indicates a function’s parameter types and return type, and may optionally include a function body described in terms of [Expr][google.api.expr.v1alpha1.Expr] values.

Functions overloads are declared in either a function or method call-style. For methods, the params[0] is the expected type of the target receiver.

Overloads must have non-overlapping argument types after erasure of all parameterized type variables (similar as type erasure in Java).

Fields

overload_id: String

Required. Globally unique overload name of the function which reflects the function name and argument types.

This will be used by a [Reference][google.api.expr.v1alpha1.Reference] to indicate the overload_id that was resolved for the function name.

params: Vec<Type>

List of function parameter [Type][google.api.expr.v1alpha1.Type] values.

Param types are disjoint after generic type parameters have been replaced with the type DYN. Since the DYN type is compatible with any other type, this means that if A is a type parameter, the function types int<A> and int<int> are not disjoint. Likewise, map<string, string> is not disjoint from map<K, V>.

When the result_type of a function is a generic type param, the type param name also appears as the type of on at least one params.

type_params: Vec<String>

The type param names associated with the function declaration.

For example, function ex<K,V>(K key, map<K, V> map) : V would yield the type params of K, V.

result_type: Option<Type>

Required. The result type of the function. For example, the operator string.isEmpty() would have result_type of kind: BOOL.

is_instance_function: bool

Whether the function is to be used in a method call-style x.f(...) of a function call-style f(x, ...).

For methods, the first parameter declaration, params[0] is the expected type of the target receiver.

doc: String

Documentation string for the overload.

Trait Implementations

impl Clone for Overload[src]

impl Debug for Overload[src]

impl Default for Overload[src]

impl Message for Overload[src]

impl PartialEq<Overload> for Overload[src]

impl StructuralPartialEq for Overload[src]

Auto Trait Implementations

impl RefUnwindSafe for Overload

impl Send for Overload

impl Sync for Overload

impl Unpin for Overload

impl UnwindSafe for Overload

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]