pub struct RentWeights {
pub waitlist: Weight,
pub dispatch_stash: Weight,
pub reservation: Weight,
pub mailbox: Weight,
pub mailbox_threshold: Weight,
}
Expand description
Describes the weight for renting.
Fields§
§waitlist: Weight
Holding message in waitlist weight.
dispatch_stash: Weight
Holding message in dispatch stash weight.
reservation: Weight
Holding reservation weight.
mailbox: Weight
Holding message in mailbox weight.
mailbox_threshold: Weight
The minimal gas amount for message to be inserted in mailbox.
Trait Implementations§
Source§impl Clone for RentWeights
impl Clone for RentWeights
Source§fn clone(&self) -> RentWeights
fn clone(&self) -> RentWeights
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 RentWeights
impl Debug for RentWeights
Source§impl Default for RentWeights
impl Default for RentWeights
Source§impl From<RentWeights> for RentCosts
impl From<RentWeights> for RentCosts
Source§fn from(val: RentWeights) -> Self
fn from(val: RentWeights) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RentWeights
impl RefUnwindSafe for RentWeights
impl Send for RentWeights
impl Sync for RentWeights
impl Unpin for RentWeights
impl UnwindSafe for RentWeights
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