Enum substrait_expr::builder::functions::FunctionReturn
source · pub enum FunctionReturn {
Templated(String),
Typed(Type),
Program(),
}Variants§
Templated(String)
The return value of the function is a templated type (e.g. add
Typed(Type)
The return value of the function is a fixed type (e.g. add(u32, u32) -> u32)
Program()
The return value of the function is a program (e.g. add(Decimal<P1,S1>, Decimal<P2,S2>) -> …)
Trait Implementations§
source§impl Clone for FunctionReturn
impl Clone for FunctionReturn
source§fn clone(&self) -> FunctionReturn
fn clone(&self) -> FunctionReturn
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 moreAuto Trait Implementations§
impl RefUnwindSafe for FunctionReturn
impl Send for FunctionReturn
impl Sync for FunctionReturn
impl Unpin for FunctionReturn
impl UnwindSafe for FunctionReturn
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