pub struct CustomFunction {
    pub name: String,
}Expand description
自定义函数标识符
Fields§
§name: String函数名称
Implementations§
Trait Implementations§
Source§impl Clone for CustomFunction
 
impl Clone for CustomFunction
Source§fn clone(&self) -> CustomFunction
 
fn clone(&self) -> CustomFunction
Returns a duplicate 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 CustomFunction
 
impl Debug for CustomFunction
Source§impl Display for CustomFunction
 
impl Display for CustomFunction
Source§impl From<&CustomFunction> for Rc<dyn FunctionDefinition>
 
impl From<&CustomFunction> for Rc<dyn FunctionDefinition>
Source§fn from(custom: &CustomFunction) -> Self
 
fn from(custom: &CustomFunction) -> Self
Converts to this type from the input type.
Source§impl Hash for CustomFunction
 
impl Hash for CustomFunction
Source§impl PartialEq for CustomFunction
 
impl PartialEq for CustomFunction
Source§impl TryFrom<&str> for CustomFunction
 
impl TryFrom<&str> for CustomFunction
impl Eq for CustomFunction
impl StructuralPartialEq for CustomFunction
Auto Trait Implementations§
impl Freeze for CustomFunction
impl RefUnwindSafe for CustomFunction
impl Send for CustomFunction
impl Sync for CustomFunction
impl Unpin for CustomFunction
impl UnwindSafe for CustomFunction
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