pub struct SequenceSetIndex<'a> { /* private fields */ }
Expand description
A list of these index configs build a sequence of acquisition parameters used to configre the sequencer.
Implementations§
source§impl<'a> SequenceSetIndex<'a>
impl<'a> SequenceSetIndex<'a>
sourcepub fn new(nodes: Vec<SequenceParameterNode<'a>>) -> Self
pub fn new(nodes: Vec<SequenceParameterNode<'a>>) -> Self
Create a new sequencer index step.
No chunk data will be enables and the repetion count is 1.
sourcepub fn with_repetitions(self, repetitions: u8) -> Self
pub fn with_repetitions(self, repetitions: u8) -> Self
Set the number of repetions
sourcepub fn with_chunks(self, chunks: &'a [&'a str]) -> Self
pub fn with_chunks(self, chunks: &'a [&'a str]) -> Self
Enable a list of chunk-data attached to the GrabResult for this sequencer step.
Trait Implementations§
source§impl<'a> Clone for SequenceSetIndex<'a>
impl<'a> Clone for SequenceSetIndex<'a>
source§fn clone(&self) -> SequenceSetIndex<'a>
fn clone(&self) -> SequenceSetIndex<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for SequenceSetIndex<'a>
impl<'a> RefUnwindSafe for SequenceSetIndex<'a>
impl<'a> Send for SequenceSetIndex<'a>
impl<'a> Sync for SequenceSetIndex<'a>
impl<'a> Unpin for SequenceSetIndex<'a>
impl<'a> UnwindSafe for SequenceSetIndex<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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