pub trait ObjectType where
    Self: TryInto<Self::Syntax>,
    <Self as TryInto<Self::Syntax>>::Error: Error + Display
{ type SmiSyntax: SmiSyntax; type Syntax: Into<Self::SmiSyntax>; const ACCESS: Access; const STATUS: Status; const VALUE: ConstOid; fn into_object_syntax(
        self
    ) -> Result<Self::SmiSyntax, <Self as TryInto<Self::Syntax>>::Error> { ... } }
Expand description

A managed Management Information Base (MIB) object.

Required Associated Types

The version of SMI syntax that this type uses.

The abstract syntax for the object type. This must resolve to an instance of the SMI type.

Required Associated Constants

Determines the access level of the object.

The current status of the object.

The object identifier for the object.

Provided Methods

Converts self into its SMI data type.

Implementors