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_expr - Rust
[go: Go Back, main page]

pub struct Signature {
    pub type_signature: TypeSignature,
    pub volatility: Volatility,
}
Expand description

The Signature of a function defines its supported input types as well as its volatility.

Fields§

§type_signature: TypeSignature

type_signature - The types that the function accepts. See TypeSignature for more information.

§volatility: Volatility

volatility - The volatility of the function. See Volatility for more information.

Implementations§

source§

impl Signature

source

pub fn new(type_signature: TypeSignature, volatility: Volatility) -> Self

new - Creates a new Signature from any type signature and the volatility.

source

pub fn variadic(common_types: Vec<DataType>, volatility: Volatility) -> Self

variadic - Creates a variadic signature that represents an arbitrary number of arguments all from a type in common_types.

source

pub fn variadic_equal(volatility: Volatility) -> Self

variadic_equal - Creates a variadic signature that represents an arbitrary number of arguments of the same type.

source

pub fn uniform(
    arg_count: usize,
    valid_types: Vec<DataType>,
    volatility: Volatility
) -> Self

uniform - Creates a function with a fixed number of arguments of the same type, which must be from valid_types.

source

pub fn exact(exact_types: Vec<DataType>, volatility: Volatility) -> Self

exact - Creates a signature which must match the types in exact_types in order.

source

pub fn any(arg_count: usize, volatility: Volatility) -> Self

any - Creates a signature which can a be made of any type but of a specified number

source

pub fn one_of(
    type_signatures: Vec<TypeSignature>,
    volatility: Volatility
) -> Self

one_of Creates a signature which can match any of the TypeSignatures which are passed in.

Trait Implementations§

source§

impl Clone for Signature

source§

fn clone(&self) -> Signature

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Signature

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for Signature

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where
    H: Hasher,
    Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Signature> for Signature

source§

fn eq(&self, other: &Signature) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Signature

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere
    T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Allocation for Twhere
    T: RefUnwindSafe + Send + Sync,