Struct opcua_types::service_types::CallMethodRequest
[−]
[src]
pub struct CallMethodRequest {
pub object_id: NodeId,
pub method_id: NodeId,
pub input_arguments: Option<Vec<Variant>>,
}Fields
object_id: NodeId
method_id: NodeId
input_arguments: Option<Vec<Variant>>
Trait Implementations
impl Debug for CallMethodRequest[src]
impl Clone for CallMethodRequest[src]
fn clone(&self) -> CallMethodRequest[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 CallMethodRequest[src]
fn eq(&self, __arg_0: &CallMethodRequest) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CallMethodRequest) -> bool[src]
This method tests for !=.
impl MessageInfo for CallMethodRequest[src]
impl BinaryEncoder<CallMethodRequest> for CallMethodRequest[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.