pub trait TryExportLiteralType<V> {
    type Error;

    // Required method
    fn try_export_literal_type(
        self,
        vocabulary: &V
    ) -> Result<Type, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn try_export_literal_type(self, vocabulary: &V) -> Result<Type, Self::Error>

Implementors§