Skip to main content

Recipe

Struct Recipe 

Source
pub struct Recipe { /* private fields */ }
Expand description

A scalar call with whatever does not change from chunk to chunk already worked out.

Build one with Recipe::new when the pipeline is built, then run it per chunk with call_prepared.

Implementations§

Source§

impl Recipe

Source

pub fn new(name: &str, literals: &[Option<Value>]) -> Self

What this call can work out from the arguments that are literals.

literals holds one entry per argument, which is the value where the argument is a literal and None where it is anything else. An argument that is a literal in the plan arrives as a constant vector holding that value on every chunk, so what is read here is what the kernel would have read per chunk.

Source

pub fn plain(name: &str) -> Self

A call with nothing hoisted, for a caller with no plan to read literals out of.

Source

pub fn name(&self) -> &str

The function this calls.

Source

pub fn hoists(&self) -> bool

Whether anything was lifted out of the per chunk path.

The answer a query gives is the same either way, which is the whole point, so this is what a test has to look at to say the lifting happened at all.

Trait Implementations§

Source§

impl Debug for Recipe

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.