pub struct CallParameters {
pub particle: ParticleParameters,
pub service_id: String,
pub service_creator_peer_id: String,
pub host_id: String,
pub worker_id: String,
pub tetraplets: Vec<Vec<SecurityTetraplet>>,
}
Expand description
This struct contains parameters that would be accessible by Wasm modules.
Fields§
§particle: ParticleParameters
Parameters of the particle that caused this call.
service_id: String
Id of the current service.
service_creator_peer_id: String
Id of the service creator.
host_id: String
PeerId of the peer who hosts worker with this service.
worker_id: String
PeerId of the worker who hosts 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 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<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