pub struct ReadRequest {
pub request_header: RequestHeader,
pub max_age: f64,
pub timestamps_to_return: i32,
pub nodes_to_read: Vec<ReadValueId>,
}Expand description
ReadRequest.
Fields§
§request_header: RequestHeaderCommon request header.
max_age: f64Maximum acceptable value age in milliseconds.
timestamps_to_return: i32TimestampsToReturn (0 Source / 1 Server / 2 Both / 3 Neither).
nodes_to_read: Vec<ReadValueId>Nodes/attributes to read.
Trait Implementations§
Source§impl Clone for ReadRequest
impl Clone for ReadRequest
Source§fn clone(&self) -> ReadRequest
fn clone(&self) -> ReadRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReadRequest
impl Debug for ReadRequest
Source§impl PartialEq for ReadRequest
impl PartialEq for ReadRequest
Source§fn eq(&self, other: &ReadRequest) -> bool
fn eq(&self, other: &ReadRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReadRequest
Auto Trait Implementations§
impl Freeze for ReadRequest
impl RefUnwindSafe for ReadRequest
impl Send for ReadRequest
impl Sync for ReadRequest
impl Unpin for ReadRequest
impl UnsafeUnpin for ReadRequest
impl UnwindSafe for ReadRequest
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