pub enum ArrayFunctionArgument {
Element,
Index,
Array,
}
Variants§
Element
A non-list or list argument. The list dimensions should be one less than the Array’s list dimensions.
Index
An Int64 index argument.
Array
An argument of type List/LargeList/FixedSizeList. All Array arguments must be coercible to the same type.
Trait Implementations§
Source§impl Clone for ArrayFunctionArgument
impl Clone for ArrayFunctionArgument
Source§fn clone(&self) -> ArrayFunctionArgument
fn clone(&self) -> ArrayFunctionArgument
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArrayFunctionArgument
impl Debug for ArrayFunctionArgument
Source§impl Display for ArrayFunctionArgument
impl Display for ArrayFunctionArgument
Source§impl Hash for ArrayFunctionArgument
impl Hash for ArrayFunctionArgument
Source§impl PartialEq for ArrayFunctionArgument
impl PartialEq for ArrayFunctionArgument
Source§impl PartialOrd for ArrayFunctionArgument
impl PartialOrd for ArrayFunctionArgument
impl Eq for ArrayFunctionArgument
impl StructuralPartialEq for ArrayFunctionArgument
Auto Trait Implementations§
impl Freeze for ArrayFunctionArgument
impl RefUnwindSafe for ArrayFunctionArgument
impl Send for ArrayFunctionArgument
impl Sync for ArrayFunctionArgument
impl Unpin for ArrayFunctionArgument
impl UnwindSafe for ArrayFunctionArgument
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more