pub struct RentCosts {
pub waitlist: CostOf<BlocksAmount>,
pub dispatch_stash: CostOf<BlocksAmount>,
pub reservation: CostOf<BlocksAmount>,
}
Expand description
Holding in storages rent costs.
Fields§
§waitlist: CostOf<BlocksAmount>
Holding message in waitlist cost per block.
dispatch_stash: CostOf<BlocksAmount>
Holding message in dispatch stash cost per block.
reservation: CostOf<BlocksAmount>
Holding reservation cost per block.
Trait Implementations§
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.
impl Eq for RentCosts
impl StructuralPartialEq for RentCosts
Auto Trait Implementations§
impl Freeze for RentCosts
impl RefUnwindSafe for RentCosts
impl Send for RentCosts
impl Sync for RentCosts
impl Unpin for RentCosts
impl UnwindSafe for RentCosts
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