Struct opcua_types::service_types::AggregateConfiguration
[−]
[src]
pub struct AggregateConfiguration {
pub use_server_capabilities_defaults: Boolean,
pub treat_uncertain_as_bad: Boolean,
pub percent_data_bad: Byte,
pub percent_data_good: Byte,
pub use_sloped_extrapolation: Boolean,
}Fields
use_server_capabilities_defaults: Boolean
treat_uncertain_as_bad: Boolean
percent_data_bad: Byte
percent_data_good: Byte
use_sloped_extrapolation: Boolean
Trait Implementations
impl Debug for AggregateConfiguration[src]
impl Clone for AggregateConfiguration[src]
fn clone(&self) -> AggregateConfiguration[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for AggregateConfiguration[src]
fn eq(&self, __arg_0: &AggregateConfiguration) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &AggregateConfiguration) -> bool[src]
This method tests for !=.
impl MessageInfo for AggregateConfiguration[src]
impl BinaryEncoder<AggregateConfiguration> for AggregateConfiguration[src]
fn byte_len(&self) -> usize[src]
Returns the byte length of the structure. This calculation should be exact and as efficient as possible. Read more
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize>[src]
Encodes the instance to the write stream.
fn decode<S: Read>(stream: &mut S) -> EncodingResult<Self>[src]
Decodes an instance from the read stream.