[][src]Enum turtle_syntax::Verb

pub enum Verb {
    A,
    Predicate(IriRef),
}

Verb (either a or a predicate).

Variants

A

a keyword.

Predicate(IriRef)

Predicate.

Trait Implementations

impl Debug for Verb[src]

impl<'a> From<&'a str> for Verb[src]

Auto Trait Implementations

impl RefUnwindSafe for Verb

impl Send for Verb

impl Sync for Verb

impl Unpin for Verb

impl UnwindSafe for Verb

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, 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.