[][src]Struct varlociraptor::grammar::SampleInfo

pub struct SampleInfo<T> { /* fields omitted */ }

Container for arbitrary sample information. Use varlociraptor::grammar::Scenario::sample_info() to create it.

Methods

impl<T> SampleInfo<T>[src]

pub fn map<U, F: Fn(&T) -> U>(&self, f: F) -> SampleInfo<U>[src]

Map to other value type.

pub fn try_map<U, E, F: Fn(&T) -> Result<U, E>>(
    &self,
    f: F
) -> Result<SampleInfo<U>, E>
[src]

Map to other value type or fail at first error.

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut T>[src]

Trait Implementations

impl<T: Clone> Clone for SampleInfo<T>[src]

impl<T> Default for SampleInfo<T>[src]

impl<T> Deref for SampleInfo<T>[src]

type Target = Vec<T>

The resulting type after dereferencing.

impl<T> DerefMut for SampleInfo<T>[src]

impl<T: Debug> Debug for SampleInfo<T>[src]

Auto Trait Implementations

impl<T> Send for SampleInfo<T> where
    T: Send

impl<T> Sync for SampleInfo<T> where
    T: Sync

impl<T> Unpin for SampleInfo<T> where
    T: Unpin

impl<T> UnwindSafe for SampleInfo<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for SampleInfo<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,