Struct smartnoise_validator::bindings::builders::ResizeBuilder[][src]

pub struct ResizeBuilder<'a> {
    pub id: u32,
    pub component: &'a mut Component,
    pub release: &'a mut Release,
}

Builder interface for Resize

Fields

id: u32component: &'a mut Componentrelease: &'a mut Release

Implementations

impl<'a> ResizeBuilder<'a>[src]

pub fn data(self, id: u32) -> Self[src]

set the id of the data argument from a previous component

pub fn number_rows(self, id: u32) -> Self[src]

set the id of the number_rows argument from a previous component

pub fn number_columns(self, id: u32) -> Self[src]

set the id of the number_columns argument from a previous component

pub fn lower(self, id: u32) -> Self[src]

set the id of the lower argument from a previous component

pub fn upper(self, id: u32) -> Self[src]

set the id of the upper argument from a previous component

pub fn categories(self, id: u32) -> Self[src]

set the id of the categories argument from a previous component

pub fn weights(self, id: u32) -> Self[src]

set the id of the weights argument from a previous component

pub fn distribution(self, id: u32) -> Self[src]

set the id of the distribution argument from a previous component

pub fn shift(self, id: u32) -> Self[src]

set the id of the shift argument from a previous component

pub fn scale(self, id: u32) -> Self[src]

set the id of the scale argument from a previous component

pub fn sample_proportion(self, id: u32) -> Self[src]

set the id of the sample_proportion argument from a previous component

pub fn minimum_rows(self, id: u32) -> Self[src]

set the id of the minimum_rows argument from a previous component

pub fn value(self, value: Value) -> Self[src]

pub fn value_public(self, value: bool) -> Self[src]

pub fn build(self) -> u32[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ResizeBuilder<'a>

impl<'a> Send for ResizeBuilder<'a>

impl<'a> Sync for ResizeBuilder<'a>

impl<'a> Unpin for ResizeBuilder<'a>

impl<'a> !UnwindSafe for ResizeBuilder<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]