pub struct Binding {
pub name: String,
pub min_values: Option<u32>,
pub max_values: Option<u32>,
pub nullable: bool,
}Expand description
A parameter binding parsed from :bind(name ...).
Fields§
§name: StringThe name of the bind parameter.
min_values: Option<u32>Minimum number of values expected (from EXPECTING min).
max_values: Option<u32>Maximum number of values expected (from EXPECTING min..max).
nullable: boolWhether this binding accepts NULL (from NULL keyword).
Trait Implementations§
impl StructuralPartialEq for Binding
Auto Trait Implementations§
impl Freeze for Binding
impl RefUnwindSafe for Binding
impl Send for Binding
impl Sync for Binding
impl Unpin for Binding
impl UnsafeUnpin for Binding
impl UnwindSafe for Binding
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