pub enum RelationArgs<'a> {
Inline(Arguments<'a>),
Rows {
rows: Vec<Value<'a>>,
named: Vec<NamedArg<'a>>,
},
}Expand description
The argument section of a relation header.
Variants§
Inline(Arguments<'a>)
arg, arg, name=arg inline inside the header’s [...].
Rows
One - row per line, used by Read:Virtual once it has enough rows to
be worth spreading out. Any named arguments follow the rows, one per
line, in the same - name=value form.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for RelationArgs<'a>
impl<'a> Clone for RelationArgs<'a>
Source§fn clone(&self) -> RelationArgs<'a>
fn clone(&self) -> RelationArgs<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'a> Freeze for RelationArgs<'a>
impl<'a> RefUnwindSafe for RelationArgs<'a>
impl<'a> Send for RelationArgs<'a>
impl<'a> Sync for RelationArgs<'a>
impl<'a> Unpin for RelationArgs<'a>
impl<'a> UnsafeUnpin for RelationArgs<'a>
impl<'a> UnwindSafe for RelationArgs<'a>
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