Parse

Trait Parse 

Source
pub trait Parse {
    // Required method
    fn parse(value: impl AsRef<str>) -> Result<Self>
       where Self: Sized;
}

Required Methods§

Source

fn parse(value: impl AsRef<str>) -> Result<Self>
where Self: Sized,

Implementations on Foreign Types§

Source§

impl Parse for Box<[u8]>

Source§

fn parse(value: impl AsRef<str>) -> Result<Self>

Source§

impl Parse for Date

Source§

fn parse(value: impl AsRef<str>) -> Result<Self>
where Self: Sized,

Source§

impl Parse for OffsetDateTime

Source§

fn parse(value: impl AsRef<str>) -> Result<Self>
where Self: Sized,

Source§

impl Parse for PrimitiveDateTime

Source§

fn parse(value: impl AsRef<str>) -> Result<Self>
where Self: Sized,

Source§

impl Parse for Time

Source§

fn parse(value: impl AsRef<str>) -> Result<Self>
where Self: Sized,

Implementors§