Skip to main content

Module

Struct Module 

Source
pub struct Module<'a> { /* private fields */ }
Expand description

Borrowed handle to a resolved ModuleData.

Wraps a Mib reference and an arena id. Handles are Copy and cheap to pass around. Two handles are equal when they point to the same arena slot in the same Mib.

Implementations§

Source§

impl<'a> Module<'a>

Source

pub fn id(self) -> ModuleId

Return the arena ID for this handle.

Use IDs when you need deduplication, storage in collections, or to call RawMib methods.

Source§

impl<'a> Module<'a>

Source

pub fn name(self) -> &'a str

Return the module name.

Source

pub fn language(self) -> Language

Return the detected SMI language version.

Returns Language::Unknown when the available syntax and imports provide insufficient or conflicting version evidence.

Source

pub fn source_id(self) -> Option<SourceId>

Return the compilation-local source identity, if this module came from source text.

Source

pub fn source(self) -> Option<&'a SourceDocument>

Return the retained source document, if this module came from source text.

Source

pub fn source_label(self) -> Option<&'a str>

Return the source document’s display label, if retained.

Source

pub fn source_origin(self) -> Option<&'a SourceOrigin>

Return the source document’s stable origin, if retained.

Source

pub fn semantic_at(self, offset: ByteOffset) -> Option<SemanticSpan<'a>>

Return resolved semantic context at a byte offset in this module’s source.

Ranges are half-open: the start byte is included and the end byte is not. References take precedence over containing definitions. Among overlapping references, the narrowest range wins. Equal widths use import, OID, then type/symbol-reference priority; equal-kind overlaps prefer the later start, then retained-item order. Returns None for an out-of-bounds offset or a module without retained source text.

Source

pub fn semantic_at_source( self, source_id: SourceId, offset: ByteOffset, ) -> Option<SemanticSpan<'a>>

Return resolved semantic context after checking the source identity.

This is useful when a caller has a source-qualified cursor. A source ID from another document never falls back to interpreting the same numeric offset in this module and instead returns None.

Source

pub fn semantic_at_position( self, position: Position, encoding: PositionEncoding, ) -> Result<Option<SemanticSpan<'a>>, PositionError>

Return resolved semantic context at a zero-based editor position.

Position conversion uses the requested UTF encoding and propagates invalid-line, invalid-column, mid-code-point, and invalid-UTF-8 errors. A module without retained source text returns Ok(None).

Source

pub fn semantic_at_source_position( self, source_id: SourceId, position: Position, encoding: PositionEncoding, ) -> Result<Option<SemanticSpan<'a>>, PositionError>

Return resolved semantic context at a source-qualified editor position.

A source-ID mismatch returns Ok(None) without converting the position; otherwise this has the same conversion errors and result as Module::semantic_at_position.

Source

pub fn organization(self) -> &'a str

Return the ORGANIZATION clause text from MODULE-IDENTITY.

Source

pub fn contact_info(self) -> &'a str

Return the CONTACT-INFO clause text from MODULE-IDENTITY.

Source

pub fn description(self) -> &'a str

Return the DESCRIPTION clause text from MODULE-IDENTITY.

Source

pub fn last_updated(self) -> &'a str

Return the LAST-UPDATED timestamp string from MODULE-IDENTITY.

Source

pub fn revisions(self) -> &'a [Revision]

Return the REVISION entries from MODULE-IDENTITY.

Source

pub fn imports(self) -> &'a [Import]

Return the IMPORTS declarations.

Source

pub fn identities(self) -> &'a [ModuleIdentityData]

Return exact module-scoped OID identity declarations.

This preserves same-OID aliases and declarations hidden by the global OID tree’s winning name, kind, metadata, or module.

Source

pub fn is_base(self) -> bool

Return true if this is an SMI foundation module (SNMPv2-SMI, etc.).

Foundation modules define the SMI language itself. Their source may be supplied by a configured source or by the parsed embedded fallback. See the crate-level docs for the full list and source precedence.

Source

pub fn oid(self) -> Option<&'a Oid>

Return the module’s registered OID from its MODULE-IDENTITY, if any.

Source

pub fn imports_symbol(self, name: &str) -> bool

Return true if this module imports a symbol with the given name.

Source

pub fn import_source(self, name: &str) -> Option<Module<'a>>

Return the resolved source module for an imported name.

Source

pub fn import_resolution(self, name: &str) -> Option<&'a ImportResolution>

Return retained pre-collapse resolution provenance for an imported symbol.

Source

pub fn object(self, name: &str) -> Option<Object<'a>>

Look up an object defined by this module.

Source

pub fn type(self, name: &str) -> Option<Type<'a>>

Look up a type defined by this module.

Source

pub fn node(self, name: &str) -> Option<Node<'a>>

Look up any node defined by this module.

Source

pub fn notification(self, name: &str) -> Option<Notification<'a>>

Look up a notification defined by this module.

Source

pub fn group(self, name: &str) -> Option<Group<'a>>

Look up a group defined by this module.

Source

pub fn compliance(self, name: &str) -> Option<Compliance<'a>>

Look up a compliance statement defined by this module.

Source

pub fn capability(self, name: &str) -> Option<Capability<'a>>

Look up a capabilities statement defined by this module.

Source

pub fn objects(self) -> impl Iterator<Item = Object<'a>> + 'a

Iterate objects defined by this module.

Source

pub fn types(self) -> impl Iterator<Item = Type<'a>> + 'a

Iterate types defined by this module.

Source

pub fn nodes(self) -> impl Iterator<Item = Node<'a>> + 'a

Iterate nodes defined by this module.

Trait Implementations§

Source§

impl<'a> Clone for Module<'a>

Source§

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

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<'a> Copy for Module<'a>

Source§

impl Debug for Module<'_>

Source§

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

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

impl Eq for Module<'_>

Source§

impl PartialEq for Module<'_>

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Module<'a>

§

impl<'a> RefUnwindSafe for Module<'a>

§

impl<'a> Send for Module<'a>

§

impl<'a> Sync for Module<'a>

§

impl<'a> Unpin for Module<'a>

§

impl<'a> UnsafeUnpin for Module<'a>

§

impl<'a> UnwindSafe for Module<'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§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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,

Source§

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>,

Source§

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>,

Source§

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more