[][src]Struct proteus::parser::Parsable

pub struct Parsable<'a> { /* fields omitted */ }

This type represents a single transformation action to be taken containing the source and destination syntax to be parsed into an Action.

Implementations

impl<'a> Parsable<'a>[src]

pub fn new<S>(source: S, destination: S) -> Self where
    S: Into<Cow<'a, str>>, 
[src]

Trait Implementations

impl<'a> Debug for Parsable<'a>[src]

impl<'de, 'a> Deserialize<'de> for Parsable<'a>[src]

impl<'a> PartialEq<Parsable<'a>> for Parsable<'a>[src]

impl<'a> Serialize for Parsable<'a>[src]

impl<'a> StructuralPartialEq for Parsable<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Parsable<'a>[src]

impl<'a> Send for Parsable<'a>[src]

impl<'a> Sync for Parsable<'a>[src]

impl<'a> Unpin for Parsable<'a>[src]

impl<'a> UnwindSafe for Parsable<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Serialize for T where
    T: Serialize + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.