Struct yang3::schema::SchemaModule

source ·
pub struct SchemaModule<'a> { /* private fields */ }
Expand description

Available YANG schema tree structures representing YANG module.

Implementations§

source§

impl<'a> SchemaModule<'a>

source

pub fn name(&self) -> &str

Name of the module.

source

pub fn revision(&self) -> Option<&str>

Revision of the module.

source

pub fn namespace(&self) -> &str

Namespace of the module.

source

pub fn prefix(&self) -> &str

Prefix of the module.

source

pub fn filepath(&self) -> Option<&str>

File path, if the schema was read from a file.

source

pub fn organization(&self) -> Option<&str>

Party/company responsible for the module.

source

pub fn contact(&self) -> Option<&str>

Contact information for the module.

source

pub fn description(&self) -> Option<&str>

Description of the module.

source

pub fn reference(&self) -> Option<&str>

Cross-reference for the module.

source

pub fn set_implemented(&self) -> Result<(), Error>

Make the specific module implemented.

source

pub fn is_implemented(&self) -> bool

Return true if the module is implemented, not just imported.

source

pub fn feature_value(&self, feature: &str) -> Result<bool, Error>

Get the current real status of the specified feature in the module.

source

pub fn print_file<F: AsRawFd>( &self, fd: F, format: SchemaOutputFormat, options: SchemaPrinterFlags, ) -> Result<(), Error>

Print schema tree in the specified format into a file descriptor.

source

pub fn print_string( &self, format: SchemaOutputFormat, options: SchemaPrinterFlags, ) -> Result<String, Error>

Print schema tree in the specified format into a string.

source

pub fn data(&self) -> Siblings<'a, SchemaNode<'a>>

Returns an iterator over the top-level data nodes.

source

pub fn rpcs(&self) -> Siblings<'a, SchemaNode<'a>>

Returns an iterator over the list of RPCs.

source

pub fn notifications(&self) -> Siblings<'a, SchemaNode<'a>>

Returns an iterator over the list of notifications.

source

pub fn extensions(&self) -> impl Iterator<Item = SchemaExtInstance<'a>>

Returns an iterator over the list of extension instances.

source

pub fn top_level_nodes( &self, flags: IterSchemaFlags, ) -> impl Iterator<Item = SchemaNode<'a>>

Returns an iterator over the top-level data nodes. The iteration behavior is customizable using the provided flags option.

source

pub fn traverse(&self) -> impl Iterator<Item = SchemaNode<'a>>

Returns an iterator over all data nodes in the schema module (depth-first search algorithm).

NOTE: augmentations (from other modules or from the module itself) are also iterated over.

Trait Implementations§

source§

impl<'a> Binding<'a> for SchemaModule<'a>

§

type CType = lys_module

§

type Container = Context

source§

unsafe fn from_raw( context: &'a Context, raw: *mut lys_module, ) -> SchemaModule<'_>

source§

unsafe fn from_raw_opt( container: &'a Self::Container, raw: *mut Self::CType, ) -> Option<Self>

source§

impl<'a> Clone for SchemaModule<'a>

source§

fn clone(&self) -> SchemaModule<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for SchemaModule<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> PartialEq for SchemaModule<'a>

source§

fn eq(&self, other: &SchemaModule<'_>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Send for SchemaModule<'_>

source§

impl Sync for SchemaModule<'_>

Auto Trait Implementations§

§

impl<'a> Freeze for SchemaModule<'a>

§

impl<'a> RefUnwindSafe for SchemaModule<'a>

§

impl<'a> Unpin for SchemaModule<'a>

§

impl<'a> UnwindSafe for SchemaModule<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.