[][src]Struct yang2::data::DataParserFlags

pub struct DataParserFlags { /* fields omitted */ }

Data parser options.

Various options to change the data tree parsers behavior.

Default parser behavior:

  • complete input file is always parsed. In case of XML, even not well-formed XML document (multiple top-level elements) is parsed in its entirety.
  • parser silently ignores data without matching schema node definition.
  • list instances are checked whether they have all the keys, error is raised if not.

Default parser validation behavior:

  • the provided data are expected to provide complete datastore content (both the configuration and state data) and performs data validation according to all YANG rules, specifics follow.
  • list instances are expected to have all the keys (it is not checked).
  • instantiated (status) obsolete data print a warning.
  • all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have all the keys, leaf(-lists) correct values).
  • when statements on existing nodes are evaluated, if not satisfied, a validation error is raised.
  • if-feature statements are evaluated.
  • invalid multiple data instances/data from several cases cause a validation error.
  • implicit nodes (NP containers and default values) are added.

Implementations

impl DataParserFlags[src]

pub const NO_VALIDATION: DataParserFlags[src]

Data will be only parsed and no validation will be performed. When statements are kept unevaluated, union types may not be fully resolved, if-feature statements are not checked, and default values are not added (only the ones parsed are present).

pub const STRICT: DataParserFlags[src]

Instead of silently ignoring data without schema definition raise an error.

pub const NO_STATE: DataParserFlags[src]

Forbid state data in the parsed data.

pub const fn empty() -> DataParserFlags[src]

Returns an empty set of flags

pub const fn all() -> DataParserFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<DataParserFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> DataParserFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> DataParserFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: DataParserFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: DataParserFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: DataParserFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: DataParserFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: DataParserFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: DataParserFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for DataParserFlags[src]

impl BitAnd<DataParserFlags> for DataParserFlags[src]

type Output = DataParserFlags

The resulting type after applying the & operator.

pub fn bitand(self, other: DataParserFlags) -> DataParserFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<DataParserFlags> for DataParserFlags[src]

pub fn bitand_assign(&mut self, other: DataParserFlags)[src]

Disables all flags disabled in the set.

impl BitOr<DataParserFlags> for DataParserFlags[src]

type Output = DataParserFlags

The resulting type after applying the | operator.

pub fn bitor(self, other: DataParserFlags) -> DataParserFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<DataParserFlags> for DataParserFlags[src]

pub fn bitor_assign(&mut self, other: DataParserFlags)[src]

Adds the set of flags.

impl BitXor<DataParserFlags> for DataParserFlags[src]

type Output = DataParserFlags

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: DataParserFlags) -> DataParserFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<DataParserFlags> for DataParserFlags[src]

pub fn bitxor_assign(&mut self, other: DataParserFlags)[src]

Toggles the set of flags.

impl Clone for DataParserFlags[src]

impl Copy for DataParserFlags[src]

impl Debug for DataParserFlags[src]

impl Eq for DataParserFlags[src]

impl Extend<DataParserFlags> for DataParserFlags[src]

impl FromIterator<DataParserFlags> for DataParserFlags[src]

impl Hash for DataParserFlags[src]

impl LowerHex for DataParserFlags[src]

impl Not for DataParserFlags[src]

type Output = DataParserFlags

The resulting type after applying the ! operator.

pub fn not(self) -> DataParserFlags[src]

Returns the complement of this set of flags.

impl Octal for DataParserFlags[src]

impl Ord for DataParserFlags[src]

impl PartialEq<DataParserFlags> for DataParserFlags[src]

impl PartialOrd<DataParserFlags> for DataParserFlags[src]

impl StructuralEq for DataParserFlags[src]

impl StructuralPartialEq for DataParserFlags[src]

impl Sub<DataParserFlags> for DataParserFlags[src]

type Output = DataParserFlags

The resulting type after applying the - operator.

pub fn sub(self, other: DataParserFlags) -> DataParserFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<DataParserFlags> for DataParserFlags[src]

pub fn sub_assign(&mut self, other: DataParserFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for DataParserFlags[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.