#[repr(transparent)]pub struct ucl_object_flags(pub u32);Expand description
Basic flags for an object
Tuple Fields§
§0: u32Implementations§
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_ALLOCATED_KEY: ucl_object_flags
pub const UCL_OBJECT_ALLOCATED_KEY: ucl_object_flags
< An object has key allocated internally
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_ALLOCATED_VALUE: ucl_object_flags
pub const UCL_OBJECT_ALLOCATED_VALUE: ucl_object_flags
< An object has a string value allocated internally
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_NEED_KEY_ESCAPE: ucl_object_flags
pub const UCL_OBJECT_NEED_KEY_ESCAPE: ucl_object_flags
< The key of an object need to be escaped on output
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_EPHEMERAL: ucl_object_flags
pub const UCL_OBJECT_EPHEMERAL: ucl_object_flags
< Temporary object that does not need to be freed really
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_MULTILINE: ucl_object_flags
pub const UCL_OBJECT_MULTILINE: ucl_object_flags
< String should be displayed as multiline string
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_MULTIVALUE: ucl_object_flags
pub const UCL_OBJECT_MULTIVALUE: ucl_object_flags
< Object is a key with multiple values
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_INHERITED: ucl_object_flags
pub const UCL_OBJECT_INHERITED: ucl_object_flags
< Object has been inherited from another
Source§impl ucl_object_flags
impl ucl_object_flags
Sourcepub const UCL_OBJECT_BINARY: ucl_object_flags
pub const UCL_OBJECT_BINARY: ucl_object_flags
< Object contains raw binary data
Trait Implementations§
Source§impl BitAnd for ucl_object_flags
impl BitAnd for ucl_object_flags
Source§impl BitAndAssign for ucl_object_flags
impl BitAndAssign for ucl_object_flags
Source§fn bitand_assign(&mut self, rhs: ucl_object_flags)
fn bitand_assign(&mut self, rhs: ucl_object_flags)
Performs the
&= operation. Read moreSource§impl BitOr for ucl_object_flags
impl BitOr for ucl_object_flags
Source§impl BitOrAssign for ucl_object_flags
impl BitOrAssign for ucl_object_flags
Source§fn bitor_assign(&mut self, rhs: ucl_object_flags)
fn bitor_assign(&mut self, rhs: ucl_object_flags)
Performs the
|= operation. Read moreSource§impl Clone for ucl_object_flags
impl Clone for ucl_object_flags
Source§fn clone(&self) -> ucl_object_flags
fn clone(&self) -> ucl_object_flags
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_object_flags
impl Debug for ucl_object_flags
Source§impl Hash for ucl_object_flags
impl Hash for ucl_object_flags
Source§impl PartialEq for ucl_object_flags
impl PartialEq for ucl_object_flags
impl Copy for ucl_object_flags
impl Eq for ucl_object_flags
impl StructuralPartialEq for ucl_object_flags
Auto Trait Implementations§
impl Freeze for ucl_object_flags
impl RefUnwindSafe for ucl_object_flags
impl Send for ucl_object_flags
impl Sync for ucl_object_flags
impl Unpin for ucl_object_flags
impl UnwindSafe for ucl_object_flags
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