Enum cw_utils::Expiration
source · Expand description
Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)
Variants§
AtHeight(u64)
AtHeight will expire when env.block.height >= height
AtTime(Timestamp)
AtTime will expire when env.block.time >= time
Never
Fields
Never will never expire. Used to express the empty variant
Implementations§
source§impl Expiration
impl Expiration
pub fn is_expired(&self, block: &BlockInfo) -> bool
Trait Implementations§
source§impl Add<Duration> for Expiration
impl Add<Duration> for Expiration
source§impl Clone for Expiration
impl Clone for Expiration
source§fn clone(&self) -> Expiration
fn clone(&self) -> Expiration
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 Expiration
impl Debug for Expiration
source§impl Default for Expiration
impl Default for Expiration
The default (empty value) is to never expire
source§impl<'de> Deserialize<'de> for Expiration
impl<'de> Deserialize<'de> for Expiration
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
source§impl Display for Expiration
impl Display for Expiration
source§impl JsonSchema for Expiration
impl JsonSchema for Expiration
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl PartialEq<Expiration> for Expiration
impl PartialEq<Expiration> for Expiration
source§fn eq(&self, other: &Expiration) -> bool
fn eq(&self, other: &Expiration) -> bool
source§impl PartialOrd<Expiration> for Expiration
impl PartialOrd<Expiration> for Expiration
source§fn partial_cmp(&self, other: &Expiration) -> Option<Ordering>
fn partial_cmp(&self, other: &Expiration) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more