[][src]Trait conjure_object::FromPlain

pub trait FromPlain: Sized {
    type Err;
    fn from_plain(s: &str) -> Result<Self, Self::Err>;
}

Parse a value from its Conjure PLAIN string representation.

Associated Types

type Err

The error type returned when parsing fails.

Loading content...

Required methods

fn from_plain(s: &str) -> Result<Self, Self::Err>

Parse a value from its Conjure PLAIN string representation.

Loading content...

Implementations on Foreign Types

impl FromPlain for bool[src]

type Err = <bool as FromStr>::Err

impl FromPlain for i32[src]

type Err = <i32 as FromStr>::Err

impl FromPlain for String[src]

type Err = <String as FromStr>::Err

impl FromPlain for f64[src]

Loading content...

Implementors

impl FromPlain for BearerToken[src]

type Err = <BearerToken as FromStr>::Err

impl FromPlain for ResourceIdentifier[src]

type Err = <ResourceIdentifier as FromStr>::Err

impl FromPlain for SafeLong[src]

type Err = <SafeLong as FromStr>::Err

impl FromPlain for ByteBuf[src]

impl FromPlain for DateTime<Utc>[src]

impl FromPlain for Uuid[src]

type Err = <Uuid as FromStr>::Err

Loading content...