[][src]Struct imex::expression::IMEx

pub struct IMEx {
    pub vals: IntoIter<QuantifiedIMExVal>,
    // some fields omitted
}

A single-element tuple-struct representing a parsed IMEx. Used by IMExIter to perform lazy merging.

Fields

vals: IntoIter<QuantifiedIMExVal>

Trait Implementations

impl Clone for IMEx[src]

impl Debug for IMEx[src]

impl PartialEq<IMEx> for IMEx[src]

impl<'_> TryFrom<&'_ str> for IMEx[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(imex_str: &str) -> Result<Self>[src]

Parse an IMEx from a string.

Error

Results in an error if the IMEx is invalid.

Example

use imex::expression::IMEx;
use std::convert::TryFrom;
let imex = IMEx::try_from("01*(23){4}");

Auto Trait Implementations

impl RefUnwindSafe for IMEx

impl Send for IMEx

impl Sync for IMEx

impl Unpin for IMEx

impl UnwindSafe for IMEx

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.