pub struct CallMethodRequest {
pub object_id: NodeId,
pub method_id: NodeId,
pub input_arguments: Vec<Variant>,
}Expand description
CallMethodRequest (Part 4 §5.12.2).
Fields§
§object_id: NodeIdObject the method belongs to.
method_id: NodeIdMethod to call.
input_arguments: Vec<Variant>Input argument values.
Trait Implementations§
Source§impl Clone for CallMethodRequest
impl Clone for CallMethodRequest
Source§fn clone(&self) -> CallMethodRequest
fn clone(&self) -> CallMethodRequest
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 CallMethodRequest
impl Debug for CallMethodRequest
Source§impl PartialEq for CallMethodRequest
impl PartialEq for CallMethodRequest
Source§fn eq(&self, other: &CallMethodRequest) -> bool
fn eq(&self, other: &CallMethodRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CallMethodRequest
Source§impl UaDecode for CallMethodRequest
impl UaDecode for CallMethodRequest
Auto Trait Implementations§
impl Freeze for CallMethodRequest
impl RefUnwindSafe for CallMethodRequest
impl Send for CallMethodRequest
impl Sync for CallMethodRequest
impl Unpin for CallMethodRequest
impl UnsafeUnpin for CallMethodRequest
impl UnwindSafe for CallMethodRequest
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