[][src]Struct uclicious_libucl_sys::ucl_object_flags

#[repr(transparent)]
pub struct ucl_object_flags(pub u32);

Basic flags for an object

Methods

impl ucl_object_flags[src]

pub const UCL_OBJECT_ALLOCATED_KEY: ucl_object_flags[src]

< An object has key allocated internally

impl ucl_object_flags[src]

pub const UCL_OBJECT_ALLOCATED_VALUE: ucl_object_flags[src]

< An object has a string value allocated internally

impl ucl_object_flags[src]

pub const UCL_OBJECT_NEED_KEY_ESCAPE: ucl_object_flags[src]

< The key of an object need to be escaped on output

impl ucl_object_flags[src]

pub const UCL_OBJECT_EPHEMERAL: ucl_object_flags[src]

< Temporary object that does not need to be freed really

impl ucl_object_flags[src]

pub const UCL_OBJECT_MULTILINE: ucl_object_flags[src]

< String should be displayed as multiline string

impl ucl_object_flags[src]

pub const UCL_OBJECT_MULTIVALUE: ucl_object_flags[src]

< Object is a key with multiple values

impl ucl_object_flags[src]

pub const UCL_OBJECT_INHERITED: ucl_object_flags[src]

< Object has been inherited from another

impl ucl_object_flags[src]

pub const UCL_OBJECT_BINARY: ucl_object_flags[src]

< Object contains raw binary data

Trait Implementations

impl BitAnd<ucl_object_flags> for ucl_object_flags[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<ucl_object_flags> for ucl_object_flags[src]

impl BitOr<ucl_object_flags> for ucl_object_flags[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<ucl_object_flags> for ucl_object_flags[src]

impl Clone for ucl_object_flags[src]

impl Copy for ucl_object_flags[src]

impl Debug for ucl_object_flags[src]

impl Eq for ucl_object_flags[src]

impl Hash for ucl_object_flags[src]

impl PartialEq<ucl_object_flags> for ucl_object_flags[src]

impl StructuralEq for ucl_object_flags[src]

impl StructuralPartialEq for ucl_object_flags[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.