Struct unc_parameters::cost::Fee
source · pub struct Fee {
pub send_sir: Gas,
pub send_not_sir: Gas,
pub execution: Gas,
}Expand description
Costs associated with an object that can only be sent over the network (and executed
by the receiver).
NOTE: send_sir or send_not_sir fees are usually burned when the item is being created.
And execution fee is burned when the item is being executed.
Fields§
§send_sir: GasFee for sending an object from the sender to itself, guaranteeing that it does not leave the shard.
send_not_sir: GasFee for sending an object potentially across the shards.
execution: GasFee for executing the object.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Fee
impl<'de> Deserialize<'de> for Fee
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
impl Eq for Fee
impl StructuralPartialEq for Fee
Auto Trait Implementations§
impl Freeze for Fee
impl RefUnwindSafe for Fee
impl Send for Fee
impl Sync for Fee
impl Unpin for Fee
impl UnwindSafe for Fee
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 Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.