pub struct SystemLoanFeeReserve {
Show 22 fields execution_cost_unit_price: Decimal, execution_cost_unit_limit: u32, execution_cost_unit_loan: u32, finalization_cost_unit_price: Decimal, finalization_cost_unit_limit: u32, usd_price: Decimal, state_storage_price: Decimal, archive_storage_price: Decimal, tip_percentage: u16, abort_when_loan_repaid: bool, effective_execution_cost_unit_price: Decimal, effective_finalization_cost_unit_price: Decimal, xrd_balance: Decimal, xrd_owed: Decimal, execution_cost_units_committed: u32, execution_cost_units_deferred: u32, finalization_cost_units_committed: u32, royalty_cost_committed: Decimal, royalty_cost_breakdown: IndexMap<RoyaltyRecipient, Decimal>, storage_cost_committed: Decimal, storage_cost_deferred: IndexMap<StorageType, usize>, locked_fees: Vec<(NodeId, LiquidFungibleResource, bool)>,
}

Fields§

§execution_cost_unit_price: Decimal§execution_cost_unit_limit: u32§execution_cost_unit_loan: u32§finalization_cost_unit_price: Decimal§finalization_cost_unit_limit: u32§usd_price: Decimal§state_storage_price: Decimal§archive_storage_price: Decimal§tip_percentage: u16§abort_when_loan_repaid: bool§effective_execution_cost_unit_price: Decimal§effective_finalization_cost_unit_price: Decimal§xrd_balance: Decimal§xrd_owed: Decimal§execution_cost_units_committed: u32§execution_cost_units_deferred: u32§finalization_cost_units_committed: u32§royalty_cost_committed: Decimal§royalty_cost_breakdown: IndexMap<RoyaltyRecipient, Decimal>§storage_cost_committed: Decimal§storage_cost_deferred: IndexMap<StorageType, usize>§locked_fees: Vec<(NodeId, LiquidFungibleResource, bool)>

Implementations§

source§

impl SystemLoanFeeReserve

source

pub fn new( costing_parameters: &CostingParameters, transaction_costing_parameters: &TransactionCostingParameters, abort_when_loan_repaid: bool ) -> SystemLoanFeeReserve

source

pub fn execution_cost_unit_limit(&self) -> u32

source

pub fn execution_cost_unit_price(&self) -> Decimal

source

pub fn finalization_cost_unit_limit(&self) -> u32

source

pub fn finalization_cost_unit_price(&self) -> Decimal

source

pub fn usd_price(&self) -> Decimal

source

pub fn tip_percentage(&self) -> u32

source

pub fn fee_balance(&self) -> Decimal

source

pub fn royalty_cost_breakdown(&self) -> &IndexMap<RoyaltyRecipient, Decimal>

source

pub fn repay_all(&mut self) -> Result<(), FeeReserveError>

source

pub fn revert_royalty(&mut self)

source

pub fn fully_repaid(&self) -> bool

Trait Implementations§

source§

impl Categorize<ScryptoCustomValueKind> for SystemLoanFeeReserve

source§

impl Clone for SystemLoanFeeReserve

source§

fn clone(&self) -> SystemLoanFeeReserve

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SystemLoanFeeReserve

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<D> Decode<ScryptoCustomValueKind, D> for SystemLoanFeeReserve

source§

fn decode_body_with_value_kind( decoder: &mut D, value_kind: ValueKind<ScryptoCustomValueKind> ) -> Result<SystemLoanFeeReserve, DecodeError>

Decodes the type from the decoder, which should match a preloaded value kind. Read more
source§

impl Default for SystemLoanFeeReserve

source§

fn default() -> SystemLoanFeeReserve

Returns the “default value” for a type. Read more
source§

impl Describe<ScryptoCustomTypeKind> for SystemLoanFeeReserve

source§

const TYPE_ID: RustTypeId = _

The TYPE_ID should give a unique identifier for its SBOR schema type. An SBOR schema type capture details about the SBOR payload, how it should be interpreted, validated and displayed. Read more
source§

fn type_data() -> TypeData<ScryptoCustomTypeKind, RustTypeId>

Returns the local schema for the given type. Read more
source§

fn add_all_dependencies(aggregator: &mut TypeAggregator<ScryptoCustomTypeKind>)

For each type referenced in get_local_type_data, we need to ensure that the type and all of its own references get added to the aggregator. Read more
source§

impl<E> Encode<ScryptoCustomValueKind, E> for SystemLoanFeeReserve

source§

fn encode_value_kind(&self, encoder: &mut E) -> Result<(), EncodeError>

Encodes the SBOR value’s kind to the encoder
source§

fn encode_body(&self, encoder: &mut E) -> Result<(), EncodeError>

Encodes the SBOR body of the type to the encoder. Read more
source§

impl ExecutionFeeReserve for SystemLoanFeeReserve

source§

fn consume_execution(&mut self, cost_units: u32) -> Result<(), FeeReserveError>

source§

fn consume_finalization( &mut self, cost_units: u32 ) -> Result<(), FeeReserveError>

source§

fn consume_royalty( &mut self, royalty_amount: RoyaltyAmount, recipient: RoyaltyRecipient ) -> Result<(), FeeReserveError>

source§

fn consume_storage( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), FeeReserveError>

source§

fn lock_fee( &mut self, vault_id: NodeId, fee: LiquidFungibleResource, contingent: bool )

source§

impl FinalizingFeeReserve for SystemLoanFeeReserve

source§

impl PreExecutionFeeReserve for SystemLoanFeeReserve

source§

fn consume_deferred_execution( &mut self, cost_units: u32 ) -> Result<(), FeeReserveError>

source§

fn consume_deferred_storage( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), FeeReserveError>

source§

impl SborTuple<ScryptoCustomValueKind> for SystemLoanFeeReserve

source§

impl FeeReserve for SystemLoanFeeReserve

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<U> As for U

§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> ScryptoCategorize for T

source§

impl<T> ScryptoDecode for T

source§

impl<T> ScryptoDescribe for T

source§

impl<T> ScryptoEncode for T

source§

impl<T> ScryptoSbor for T

source§

impl<T> ScryptoSborTuple for T