pub enum BodyArg {
Scalar(SizedValue),
Aggregate(Vec<SizedValue>),
}Expand description
A positional argument to a map body for run_map_body:
a scalar param value, or the field vector of an aggregate (tuple) param.
Variants§
Scalar(SizedValue)
Aggregate(Vec<SizedValue>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BodyArg
impl RefUnwindSafe for BodyArg
impl Send for BodyArg
impl Sync for BodyArg
impl Unpin for BodyArg
impl UnsafeUnpin for BodyArg
impl UnwindSafe for BodyArg
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