pub enum ArgsLayout {
Inline,
Rows,
}Expand description
How an argument list renders inside a relation’s [...].
Variants§
Inline
arg, arg, arg on a single line.
Rows
One - arg per line, used for Read:Virtual rows. See
Relation::write_header for the exact layout.
Trait Implementations§
Source§impl Clone for ArgsLayout
impl Clone for ArgsLayout
Source§fn clone(&self) -> ArgsLayout
fn clone(&self) -> ArgsLayout
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 ArgsLayout
impl Debug for ArgsLayout
Source§impl Default for ArgsLayout
impl Default for ArgsLayout
Source§fn default() -> ArgsLayout
fn default() -> ArgsLayout
Returns the “default value” for a type. Read more
Source§impl PartialEq for ArgsLayout
impl PartialEq for ArgsLayout
impl Copy for ArgsLayout
impl Eq for ArgsLayout
impl StructuralPartialEq for ArgsLayout
Auto Trait Implementations§
impl Freeze for ArgsLayout
impl RefUnwindSafe for ArgsLayout
impl Send for ArgsLayout
impl Sync for ArgsLayout
impl Unpin for ArgsLayout
impl UnsafeUnpin for ArgsLayout
impl UnwindSafe for ArgsLayout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.