Trait xio_jobset::ExtractCaptions[][src]

pub trait ExtractCaptions {
    type Captions;
    fn extract_captions(&self) -> Self::Captions;
}

Associated Types

Required Methods

Implementations on Foreign Types

impl<T> ExtractCaptions for BTreeMap<String, T> where
    T: ExtractCaptions
[src]

impl<T> ExtractCaptions for Vec<T> where
    T: ExtractCaptions
[src]

Implementors