pub struct DataSetWriterDataType {
pub name: UAString,
pub enabled: bool,
pub data_set_writer_id: u16,
pub data_set_field_content_mask: DataSetFieldContentMask,
pub key_frame_count: u32,
pub data_set_name: UAString,
pub data_set_writer_properties: Option<Vec<KeyValuePair>>,
pub transport_settings: ExtensionObject,
pub message_settings: ExtensionObject,
}Fields§
§name: UAString§enabled: bool§data_set_writer_id: u16§data_set_field_content_mask: DataSetFieldContentMask§key_frame_count: u32§data_set_name: UAString§data_set_writer_properties: Option<Vec<KeyValuePair>>§transport_settings: ExtensionObject§message_settings: ExtensionObjectTrait Implementations§
Source§impl BinaryEncoder<DataSetWriterDataType> for DataSetWriterDataType
impl BinaryEncoder<DataSetWriterDataType> for DataSetWriterDataType
Source§fn byte_len(&self) -> usize
fn byte_len(&self) -> usize
Returns the exact byte length of the structure as it would be if
encode were called.
This may be called prior to writing to ensure the correct amount of space is available.Source§fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode>where
S: Write,
fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode>where
S: Write,
Encodes the instance to the write stream.
Source§fn decode<S>(
stream: &mut S,
decoding_options: &DecodingOptions,
) -> Result<DataSetWriterDataType, StatusCode>where
S: Read,
fn decode<S>(
stream: &mut S,
decoding_options: &DecodingOptions,
) -> Result<DataSetWriterDataType, StatusCode>where
S: Read,
Decodes an instance from the read stream. The decoding options contains restrictions set by
the server / client on the length of strings, arrays etc. If these limits are exceeded the
implementation should return with a
BadDecodingError as soon as possible.fn encode_to_vec(&self) -> Vec<u8> ⓘ
Source§impl Clone for DataSetWriterDataType
impl Clone for DataSetWriterDataType
Source§fn clone(&self) -> DataSetWriterDataType
fn clone(&self) -> DataSetWriterDataType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DataSetWriterDataType
impl Debug for DataSetWriterDataType
Source§impl MessageInfo for DataSetWriterDataType
impl MessageInfo for DataSetWriterDataType
Source§impl PartialEq for DataSetWriterDataType
impl PartialEq for DataSetWriterDataType
impl StructuralPartialEq for DataSetWriterDataType
Auto Trait Implementations§
impl Freeze for DataSetWriterDataType
impl RefUnwindSafe for DataSetWriterDataType
impl Send for DataSetWriterDataType
impl Sync for DataSetWriterDataType
impl Unpin for DataSetWriterDataType
impl UnwindSafe for DataSetWriterDataType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more