pub trait IntoTypst<T>: Sized {
    // Required method
    fn into_typst(self) -> T;
}

Required Methods§

source

fn into_typst(self) -> T

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, U> IntoTypst<U> for T
where U: FromTypst<T>,