pub struct FunctionParam {
pub name: &'static str,
pub required: bool,
}Expand description
Function parameter information for completion.
Fields§
§name: &'static strParameter name (e.g., “expression”, “separator”)
required: boolWhether this parameter is required
Trait Implementations§
Source§impl Clone for FunctionParam
impl Clone for FunctionParam
Source§fn clone(&self) -> FunctionParam
fn clone(&self) -> FunctionParam
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 moreAuto Trait Implementations§
impl Freeze for FunctionParam
impl RefUnwindSafe for FunctionParam
impl Send for FunctionParam
impl Sync for FunctionParam
impl Unpin for FunctionParam
impl UnwindSafe for FunctionParam
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