[][src]Struct bookbinder_ast::helpers::CollatedImage

pub struct CollatedImage<'a> {
    pub caption: Option<Vec<Event<'a>>>,
    pub dest: CowStr<'a>,
    pub alt: Option<CowStr<'a>>,
}

A collation of events and information about an image

Fields

caption: Option<Vec<Event<'a>>>

Events in the image caption

dest: CowStr<'a>

Path to the image

alt: Option<CowStr<'a>>

Alt text of the image

Implementations

impl<'_> CollatedImage<'_>[src]

pub fn get_latex_image_path(&self) -> Result<String, ()>[src]

return this image's path if it is valid as a LaTeX image, or attempt to convert it to a more suitable format and return that path instead

Trait Implementations

impl<'a> Debug for CollatedImage<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for CollatedImage<'a>

impl<'a> Send for CollatedImage<'a>

impl<'a> Sync for CollatedImage<'a>

impl<'a> Unpin for CollatedImage<'a>

impl<'a> UnwindSafe for CollatedImage<'a>

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Error = Infallible

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<V, T> VZip<V> for T where
    V: MultiLane<T>,