ResultsOperationBuilder

Struct ResultsOperationBuilder 

Source
pub struct ResultsOperationBuilder<'c, O0, A0, A1> { /* private fields */ }
Expand description

A builder for a results operation.

Implementations§

Source§

impl<'c> ResultsOperationBuilder<'c, Unset, Unset, Unset>

Source

pub fn new(context: &'c Context, location: Location<'c>) -> Self

Source§

impl<'c, A0, A1> ResultsOperationBuilder<'c, Unset, A0, A1>

Source

pub fn args( self, args: &[Value<'c, '_>], ) -> ResultsOperationBuilder<'c, Set, A0, A1>

Source§

impl<'c, O0, A1> ResultsOperationBuilder<'c, O0, Unset, A1>

Source

pub fn names( self, names: ArrayAttribute<'c>, ) -> ResultsOperationBuilder<'c, O0, Set, A1>

Source§

impl<'c, O0, A0> ResultsOperationBuilder<'c, O0, A0, Unset>

Source

pub fn variadicity( self, variadicity: Attribute<'c>, ) -> ResultsOperationBuilder<'c, O0, A0, Set>

Source§

impl<'c> ResultsOperationBuilder<'c, Set, Set, Set>

Source

pub fn build(self) -> ResultsOperation<'c>

Auto Trait Implementations§

§

impl<'c, O0, A0, A1> Freeze for ResultsOperationBuilder<'c, O0, A0, A1>

§

impl<'c, O0, A0, A1> RefUnwindSafe for ResultsOperationBuilder<'c, O0, A0, A1>

§

impl<'c, O0, A0, A1> !Send for ResultsOperationBuilder<'c, O0, A0, A1>

§

impl<'c, O0, A0, A1> !Sync for ResultsOperationBuilder<'c, O0, A0, A1>

§

impl<'c, O0, A0, A1> Unpin for ResultsOperationBuilder<'c, O0, A0, A1>
where O0: Unpin, A0: Unpin, A1: Unpin,

§

impl<'c, O0, A0, A1> UnwindSafe for ResultsOperationBuilder<'c, O0, A0, A1>
where O0: UnwindSafe, A0: UnwindSafe, A1: UnwindSafe,

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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.