FromMdocValue

Trait FromMdocValue 

Source
pub trait FromMdocValue: Sized {
    // Required method
    fn from_mdoc(v: &str) -> Option<Self>;
}
Expand description

§=========================== Typed value access

Required Methods§

Source

fn from_mdoc(v: &str) -> Option<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl FromMdocValue for f32

Source§

fn from_mdoc(v: &str) -> Option<Self>

Source§

impl FromMdocValue for i32

Source§

fn from_mdoc(v: &str) -> Option<Self>

Source§

impl FromMdocValue for String

Source§

fn from_mdoc(v: &str) -> Option<Self>

Implementors§