pub struct PeriodicAllowance {
pub basic: Option<BasicAllowance>,
pub period: Option<Duration>,
pub period_spend_limit: Vec<Coin>,
pub period_can_spend: Vec<Coin>,
pub period_reset: Option<Timestamp>,
}
Expand description
PeriodicAllowance extends Allowance to allow for both a maximum cap, as well as a limit per time period.
Fields§
§basic: Option<BasicAllowance>
basic specifies a struct of BasicAllowance
period: Option<Duration>
period specifies the time duration in which period_spend_limit coins can be spent before that allowance is reset
period_spend_limit: Vec<Coin>
period_spend_limit specifies the maximum number of coins that can be spent in the period
period_can_spend: Vec<Coin>
period_can_spend is the number of coins left to be spent before the period_reset time
period_reset: Option<Timestamp>
period_reset is the time at which this period resets and a new one begins, it is calculated from the start time of the first transaction after the last period ended
Trait Implementations§
Source§impl Clone for PeriodicAllowance
impl Clone for PeriodicAllowance
Source§fn clone(&self) -> PeriodicAllowance
fn clone(&self) -> PeriodicAllowance
Returns a duplicate 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 PeriodicAllowance
impl Debug for PeriodicAllowance
Source§impl Default for PeriodicAllowance
impl Default for PeriodicAllowance
Source§fn default() -> PeriodicAllowance
fn default() -> PeriodicAllowance
Returns the “default value” for a type. Read more
Source§impl Message for PeriodicAllowance
impl Message for PeriodicAllowance
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for PeriodicAllowance
impl PartialEq for PeriodicAllowance
impl StructuralPartialEq for PeriodicAllowance
Auto Trait Implementations§
impl Freeze for PeriodicAllowance
impl RefUnwindSafe for PeriodicAllowance
impl Send for PeriodicAllowance
impl Sync for PeriodicAllowance
impl Unpin for PeriodicAllowance
impl UnwindSafe for PeriodicAllowance
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request