#[repr(u32)]pub enum ucl_parse_type {
UCL_PARSE_UCL = 0,
UCL_PARSE_MSGPACK = 1,
UCL_PARSE_CSEXP = 2,
UCL_PARSE_AUTO = 3,
}Expand description
Input format type
Variants§
UCL_PARSE_UCL = 0
< Default ucl format
UCL_PARSE_MSGPACK = 1
< Message pack input format
UCL_PARSE_CSEXP = 2
< Canonical S-expressions
UCL_PARSE_AUTO = 3
< Try to detect parse type
Trait Implementations§
Source§impl Clone for ucl_parse_type
impl Clone for ucl_parse_type
Source§fn clone(&self) -> ucl_parse_type
fn clone(&self) -> ucl_parse_type
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ucl_parse_type
impl Debug for ucl_parse_type
Source§impl Hash for ucl_parse_type
impl Hash for ucl_parse_type
Source§impl PartialEq for ucl_parse_type
impl PartialEq for ucl_parse_type
impl Copy for ucl_parse_type
impl Eq for ucl_parse_type
impl StructuralPartialEq for ucl_parse_type
Auto Trait Implementations§
impl Freeze for ucl_parse_type
impl RefUnwindSafe for ucl_parse_type
impl Send for ucl_parse_type
impl Sync for ucl_parse_type
impl Unpin for ucl_parse_type
impl UnwindSafe for ucl_parse_type
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more