pub struct Parameter {
pub token: Token,
pub name: SmartString,
pub index: usize,
pub field: Option<Box<Identifier>>,
}Expand description
Parameter ($1, ?)
Fields§
§token: Token§name: SmartString§index: usize§field: Option<Box<Identifier>>Optional record field selected from a named procedural parameter, for
example :NEW.id. The SQL parser preserves it as a parameter leaf;
only the stored-program binder resolves the record contract.
Trait Implementations§
impl StructuralPartialEq for Parameter
Auto Trait Implementations§
impl Freeze for Parameter
impl RefUnwindSafe for Parameter
impl Send for Parameter
impl Sync for Parameter
impl Unpin for Parameter
impl UnsafeUnpin for Parameter
impl UnwindSafe for Parameter
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