Skip to main content

StructuredViewObject

Struct StructuredViewObject 

Source
pub struct StructuredViewObject {
    pub node_type: u32,
    pub node_subtype: String,
    pub subordinate_list: Vec<ObjectIdentifier>,
    pub subordinate_annotations: Vec<String>,
    /* private fields */
}
Expand description

BACnet StructuredView object (type 29).

Provides a hierarchical view of BACnet objects. NODE_TYPE classifies the node role, SUBORDINATE_LIST holds child object references, and SUBORDINATE_ANNOTATIONS provides per-child descriptions.

Fields§

§node_type: u32

Node type enumeration value (per BACnetNodeType).

§node_subtype: String

Node subtype — optional character string.

§subordinate_list: Vec<ObjectIdentifier>

Child object identifiers.

§subordinate_annotations: Vec<String>

Per-child annotations (parallel to subordinate_list).

Implementations§

Source§

impl StructuredViewObject

Source

pub fn new(instance: u32, name: impl Into<String>) -> Result<Self, Error>

Create a new StructuredView object.

Source

pub fn add_subordinate( &mut self, oid: ObjectIdentifier, annotation: impl Into<String>, )

Add a subordinate object with an annotation.

Trait Implementations§

Source§

impl BACnetObject for StructuredViewObject

Source§

fn object_identifier(&self) -> ObjectIdentifier

The object’s identifier (type + instance).
Source§

fn object_name(&self) -> &str

The object’s name.
Source§

fn read_property( &self, property: PropertyIdentifier, array_index: Option<u32>, ) -> Result<PropertyValue, Error>

Read a property value.
Source§

fn write_property( &mut self, property: PropertyIdentifier, _array_index: Option<u32>, value: PropertyValue, _priority: Option<u8>, ) -> Result<(), Error>

Write a property value.
Source§

fn property_list(&self) -> Cow<'static, [PropertyIdentifier]>

List all properties this object supports.
Source§

fn required_properties(&self) -> Cow<'static, [PropertyIdentifier]>

List the REQUIRED properties for this object type. Read more
Source§

fn cov_increment(&self) -> Option<f32>

COV increment for this object (analog objects only). Read more
Source§

fn evaluate_intrinsic_reporting(&mut self) -> Option<EventStateChange>

Evaluate intrinsic reporting after a present_value change. Read more
Source§

fn tick_schedule( &mut self, _day_of_week: u8, _hour: u8, _minute: u8, ) -> Option<(PropertyValue, Vec<(ObjectIdentifier, u32)>)>

Evaluate this object’s schedule for the given time (Clause 12.24). Read more
Source§

fn acknowledge_alarm(&mut self, _transition_bit: u8) -> Result<(), Error>

Acknowledge an alarm transition. Sets the corresponding bit in acked_transitions. Returns Ok(()) if the object supports event detection, Err otherwise.
Source§

fn add_trend_record(&mut self, _record: BACnetLogRecord)

Add a trend log record (only meaningful for TrendLog / TrendLogMultiple). Read more

Auto Trait Implementations§

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