pub struct SampleSizeAtomBuilderEntrySizesBuilder<S: State, I1, BuilderState: State = Empty>where
S::EntrySizes: IsUnset,
S::SampleSize: IsUnset,
S::SampleCount: IsUnset,
I1: IntoIterator<Item = u32>,{ /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State, I1, BuilderState: State> SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>where
S::EntrySizes: IsUnset,
S::SampleSize: IsUnset,
S::SampleCount: IsUnset,
I1: IntoIterator<Item = u32>,
impl<S: State, I1, BuilderState: State> SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>where
S::EntrySizes: IsUnset,
S::SampleSize: IsUnset,
S::SampleCount: IsUnset,
I1: IntoIterator<Item = u32>,
Sourcepub fn build(self) -> SampleSizeAtomwhere
BuilderState: IsComplete,
pub fn build(self) -> SampleSizeAtomwhere
BuilderState: IsComplete,
Finishes building and performs the requested action.
Auto Trait Implementations§
impl<S, I1, BuilderState> Freeze for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>
impl<S, I1, BuilderState> RefUnwindSafe for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>where
<S as State>::SampleCount: Sized,
<S as State>::SampleSize: Sized,
<S as State>::EntrySizes: Sized,
I1: RefUnwindSafe,
impl<S, I1, BuilderState> Send for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>
impl<S, I1, BuilderState> Sync for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>
impl<S, I1, BuilderState> Unpin for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>
impl<S, I1, BuilderState> UnsafeUnpin for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>where
<S as State>::SampleCount: Sized,
<S as State>::SampleSize: Sized,
<S as State>::EntrySizes: Sized,
I1: UnsafeUnpin,
impl<S, I1, BuilderState> UnwindSafe for SampleSizeAtomBuilderEntrySizesBuilder<S, I1, BuilderState>where
<S as State>::SampleCount: Sized,
<S as State>::SampleSize: Sized,
<S as State>::EntrySizes: Sized,
I1: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more