[][src]Struct nuscenes_data::base::WithDataset

pub struct WithDataset<'a, T> { /* fields omitted */ }

A wrapper struct that wraps around a base type with a reference to dataset.

Methods

impl<'a> WithDataset<'a, CalibratedSensor>[src]

pub fn sensor(&self) -> WithDataset<'a, Sensor>[src]

impl<'a> WithDataset<'a, InstanceInternal>[src]

pub fn category(&self) -> WithDataset<'a, Category>[src]

Important traits for Iter<'a, Attribute, It>
pub fn sample_annotation_iter(
    &self
) -> Iter<'a, SampleAnnotation, SliceIter<'a, LongToken>>
[src]

impl<'a> WithDataset<'a, Log>[src]

pub fn open(&self) -> IoResult<Option<File>>[src]

impl<'a> WithDataset<'a, Map>[src]

Important traits for Iter<'a, Attribute, It>
pub fn log_iter(&self) -> Iter<'a, Log, SliceIter<'a, LongToken>>[src]

impl<'a> WithDataset<'a, SampleInternal>[src]

Important traits for Iter<'a, Attribute, It>
pub fn sample_annotation_iter(
    &self
) -> Iter<'a, SampleAnnotation, SliceIter<'a, LongToken>>
[src]

Important traits for Iter<'a, Attribute, It>
pub fn sample_data_iter(&self) -> Iter<'a, SampleData, SliceIter<'a, LongToken>>[src]

pub fn scene(&self) -> WithDataset<'a, SceneInternal>[src]

pub fn prev(&self) -> Option<WithDataset<'a, SampleInternal>>[src]

pub fn next(&self) -> Option<WithDataset<'a, SampleInternal>>[src]

impl<'a> WithDataset<'a, SampleAnnotation>[src]

pub fn sample(&self) -> WithDataset<'a, SampleInternal>[src]

pub fn instance(&self) -> WithDataset<'a, InstanceInternal>[src]

Important traits for Iter<'a, Attribute, It>
pub fn attribute_iter(&self) -> Iter<'a, Attribute, SliceIter<'a, LongToken>>[src]

pub fn prev(&self) -> Option<WithDataset<'a, SampleAnnotation>>[src]

pub fn next(&self) -> Option<WithDataset<'a, SampleAnnotation>>[src]

impl<'a> WithDataset<'a, SampleData>[src]

impl<'a> WithDataset<'a, SceneInternal>[src]

pub fn log(&self) -> WithDataset<'a, Log>[src]

Important traits for Iter<'a, Attribute, It>
pub fn sample_iter(&self) -> Iter<'a, SampleInternal, SliceIter<'a, LongToken>>[src]

Trait Implementations

impl<'a, T: Clone> Clone for WithDataset<'a, T>[src]

impl<'a, T> Deref for WithDataset<'a, T>[src]

type Target = T

The resulting type after dereferencing.

impl<'a, T: Debug> Debug for WithDataset<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Send for WithDataset<'a, T> where
    T: Sync

impl<'a, T> Sync for WithDataset<'a, T> where
    T: Sync

impl<'a, T> Unpin for WithDataset<'a, T>

impl<'a, T> UnwindSafe for WithDataset<'a, T> where
    T: RefUnwindSafe

impl<'a, T> RefUnwindSafe for WithDataset<'a, 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<T> SetParameter for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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