[][src]Enum uclicious_libucl_sys::ucl_parse_type

#[repr(u32)]
pub enum ucl_parse_type {
    UCL_PARSE_UCL,
    UCL_PARSE_MSGPACK,
    UCL_PARSE_CSEXP,
    UCL_PARSE_AUTO,
}

Input format type

Variants

UCL_PARSE_UCL

< Default ucl format

UCL_PARSE_MSGPACK

< Message pack input format

UCL_PARSE_CSEXP

< Canonical S-expressions

UCL_PARSE_AUTO

< Try to detect parse type

Trait Implementations

impl Clone for ucl_parse_type[src]

impl Copy for ucl_parse_type[src]

impl Debug for ucl_parse_type[src]

impl Eq for ucl_parse_type[src]

impl Hash for ucl_parse_type[src]

impl PartialEq<ucl_parse_type> for ucl_parse_type[src]

impl StructuralEq for ucl_parse_type[src]

impl StructuralPartialEq for ucl_parse_type[src]

Auto Trait Implementations

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.