[][src]Struct opcua_server::prelude::service_types::SimpleAttributeOperand

pub struct SimpleAttributeOperand {
    pub type_definition_id: NodeId,
    pub browse_path: Option<Vec<QualifiedName>>,
    pub attribute_id: u32,
    pub index_range: UAString,
}

Fields

type_definition_id: NodeIdbrowse_path: Option<Vec<QualifiedName>>attribute_id: u32index_range: UAString

Implementations

impl SimpleAttributeOperand[src]

pub fn new<T>(
    type_definition_id: T,
    browse_path: &str,
    attribute_id: AttributeId,
    index_range: UAString
) -> SimpleAttributeOperand where
    T: Into<NodeId>, 
[src]

Trait Implementations

impl BinaryEncoder<SimpleAttributeOperand> for SimpleAttributeOperand[src]

impl Clone for SimpleAttributeOperand[src]

impl Debug for SimpleAttributeOperand[src]

impl From<SimpleAttributeOperand> for Operand[src]

impl PartialEq<SimpleAttributeOperand> for SimpleAttributeOperand[src]

impl Serialize for SimpleAttributeOperand[src]

impl StructuralPartialEq for SimpleAttributeOperand[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,