pub trait ExtractCaptions {
    type Captions;

    fn extract_captions(&self) -> Self::Captions;
}
Expand description

Extract all captions from an item.

Required Associated Types

The type of the extracted captions.

Required Methods

In this method, the extraction is being processed.

Implementations on Foreign Types

Implementors