Struct air_test_utils::prelude::CallRequestParams
source · pub struct CallRequestParams {
pub service_id: String,
pub function_name: String,
pub arguments: Vec<Value, Global>,
pub tetraplets: Vec<Vec<SecurityTetraplet, Global>, Global>,
}
Expand description
Contains arguments of a call instruction and all other necessary information required for calling a service.
Fields§
§service_id: String
Id of a service that should be called.
function_name: String
Name of a function from service identified by service_id that should be called.
arguments: Vec<Value, Global>
Arguments that should be passed to the function.
tetraplets: Vec<Vec<SecurityTetraplet, Global>, Global>
Tetraplets that should be passed to the service.
Implementations§
Trait Implementations§
source§impl Clone for CallRequestParams
impl Clone for CallRequestParams
source§fn clone(&self) -> CallRequestParams
fn clone(&self) -> CallRequestParams
Returns a copy 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 CallRequestParams
impl Debug for CallRequestParams
source§impl<'de> Deserialize<'de> for CallRequestParams
impl<'de> Deserialize<'de> for CallRequestParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<CallRequestParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CallRequestParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<CallRequestParams> for CallRequestParams
impl PartialEq<CallRequestParams> for CallRequestParams
source§fn eq(&self, other: &CallRequestParams) -> bool
fn eq(&self, other: &CallRequestParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CallRequestParams
impl Serialize for CallRequestParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for CallRequestParams
impl StructuralEq for CallRequestParams
impl StructuralPartialEq for CallRequestParams
Auto Trait Implementations§
impl RefUnwindSafe for CallRequestParams
impl Send for CallRequestParams
impl Sync for CallRequestParams
impl Unpin for CallRequestParams
impl UnwindSafe for CallRequestParams
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where T: AsFilelike,
Query the “status” flags for the
self
file descriptor.