#[repr(u32)]pub enum SchemaPathFormat {
LOG = 0,
DATA = 1,
}Expand description
Schema path format.
Variants§
LOG = 0
Descriptive path format used in log messages.
DATA = 1
Similar to LOG except that schema-only nodes (choice, case) are skipped.
Trait Implementations§
Source§impl Clone for SchemaPathFormat
impl Clone for SchemaPathFormat
Source§fn clone(&self) -> SchemaPathFormat
fn clone(&self) -> SchemaPathFormat
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 SchemaPathFormat
impl Debug for SchemaPathFormat
Source§impl PartialEq for SchemaPathFormat
impl PartialEq for SchemaPathFormat
impl Copy for SchemaPathFormat
impl StructuralPartialEq for SchemaPathFormat
Auto Trait Implementations§
impl Freeze for SchemaPathFormat
impl RefUnwindSafe for SchemaPathFormat
impl Send for SchemaPathFormat
impl Sync for SchemaPathFormat
impl Unpin for SchemaPathFormat
impl UnwindSafe for SchemaPathFormat
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