Struct sea_query::func::FunctionCall
source ยท pub struct FunctionCall { /* private fields */ }Expand description
Function call.
Implementationsยง
sourceยงimpl FunctionCall
impl FunctionCall
sourcepub fn arg<T>(self, arg: T) -> Selfwhere
T: Into<SimpleExpr>,
pub fn arg<T>(self, arg: T) -> Selfwhere
T: Into<SimpleExpr>,
Append an argument to the function call
sourcepub fn args<I>(self, args: I) -> Selfwhere
I: IntoIterator<Item = SimpleExpr>,
pub fn args<I>(self, args: I) -> Selfwhere
I: IntoIterator<Item = SimpleExpr>,
Replace the arguments of the function call
pub fn get_func(&self) -> &Function
pub fn get_args(&self) -> &[SimpleExpr]
Trait Implementationsยง
sourceยงimpl Clone for FunctionCall
impl Clone for FunctionCall
sourceยงfn clone(&self) -> FunctionCall
fn clone(&self) -> FunctionCall
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 FunctionCall
impl Debug for FunctionCall
sourceยงimpl From<FunctionCall> for SimpleExpr
impl From<FunctionCall> for SimpleExpr
sourceยงfn from(func: FunctionCall) -> Self
fn from(func: FunctionCall) -> Self
Converts to this type from the input type.
sourceยงimpl PartialEq for FunctionCall
impl PartialEq for FunctionCall
sourceยงfn eq(&self, other: &FunctionCall) -> bool
fn eq(&self, other: &FunctionCall) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FunctionCall
Auto Trait Implementationsยง
impl Freeze for FunctionCall
impl !RefUnwindSafe for FunctionCall
impl Send for FunctionCall
impl Sync for FunctionCall
impl Unpin for FunctionCall
impl !UnwindSafe for FunctionCall
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