Struct fluence_app_service::CallParameters
source · pub struct CallParameters {
pub init_peer_id: String,
pub service_id: String,
pub service_creator_peer_id: String,
pub host_id: String,
pub particle_id: String,
pub tetraplets: Vec<Vec<SecurityTetraplet, Global>, Global>,
}Expand description
This struct contains parameters that would be accessible by Wasm modules.
Fields§
§init_peer_id: StringPeer id of the AIR script initiator.
service_id: StringId of the current service.
service_creator_peer_id: StringId of the service creator.
host_id: StringPeerId of the peer who hosts this service.
particle_id: StringId of the particle which execution resulted a call this service.
tetraplets: Vec<Vec<SecurityTetraplet, Global>, Global>Security tetraplets which described origin of the arguments.
Trait Implementations§
source§impl Clone for CallParameters
impl Clone for CallParameters
source§fn clone(&self) -> CallParameters
fn clone(&self) -> CallParameters
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 CallParameters
impl Debug for CallParameters
source§impl Default for CallParameters
impl Default for CallParameters
source§fn default() -> CallParameters
fn default() -> CallParameters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CallParameters
impl<'de> Deserialize<'de> for CallParameters
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<CallParameters, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CallParameters, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<CallParameters> for CallParameters
impl PartialEq<CallParameters> for CallParameters
source§fn eq(&self, other: &CallParameters) -> bool
fn eq(&self, other: &CallParameters) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CallParameters
impl Serialize for CallParameters
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 CallParameters
impl StructuralEq for CallParameters
impl StructuralPartialEq for CallParameters
Auto Trait Implementations§
impl RefUnwindSafe for CallParameters
impl Send for CallParameters
impl Sync for CallParameters
impl Unpin for CallParameters
impl UnwindSafe for CallParameters
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
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.