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>>,
}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: StringId of the host which run this service.
particle_id: StringId of the particle which execution resulted a call this service.
tetraplets: Vec<Vec<SecurityTetraplet>>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 duplicate 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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CallParameters
impl PartialEq for CallParameters
Source§impl Serialize for CallParameters
impl Serialize for CallParameters
impl Eq for CallParameters
impl StructuralPartialEq for CallParameters
Auto Trait Implementations§
impl Freeze for CallParameters
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