Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Signature in datafusion::physical_plan::functions - Rust
[go: Go Back, main page]

Enum datafusion::physical_plan::functions::Signature[][src]

pub enum Signature {
    Variadic(Vec<DataType>),
    VariadicEqual,
    Uniform(usize, Vec<DataType>),
    Exact(Vec<DataType>),
    Any(usize),
    OneOf(Vec<Signature>),
}
Expand description

A function’s signature, which defines the function’s supported argument types.

Variants

Variadic

arbitrary number of arguments of an common type out of a list of valid types

Tuple Fields of Variadic

0: Vec<DataType>
VariadicEqual

arbitrary number of arguments of an arbitrary but equal type

Uniform

fixed number of arguments of an arbitrary but equal type out of a list of valid types

Tuple Fields of Uniform

0: usize1: Vec<DataType>
Exact

exact number of arguments of an exact type

Tuple Fields of Exact

0: Vec<DataType>
Any

fixed number of arguments of arbitrary types

Tuple Fields of Any

0: usize
OneOf

One of a list of signatures

Tuple Fields of OneOf

0: Vec<Signature>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.