Expand description
at the given point in time and after, Expiration will be considered expired
Variants
AtHeight(u64)
expires at this block height
AtTime(u64)
expires at the time in seconds since 01/01/1970
Never
never expires
Implementations
sourceimpl Expiration
 
impl Expiration
sourcepub fn is_expired(&self, block: &BlockInfo) -> bool
 
pub fn is_expired(&self, block: &BlockInfo) -> bool
Returns bool, true if Expiration has expired
Arguments
block- a reference to the BlockInfo containing the time to compare the Expiration to
Trait Implementations
sourceimpl Clone for Expiration
 
impl Clone for Expiration
sourcefn clone(&self) -> Expiration
 
fn clone(&self) -> Expiration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Expiration
 
impl Debug for Expiration
sourceimpl Default for Expiration
 
impl Default for Expiration
default is Never
sourceimpl<'de> Deserialize<'de> for Expiration
 
impl<'de> Deserialize<'de> for Expiration
sourcefn 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
sourceimpl Display for Expiration
 
impl Display for Expiration
sourceimpl JsonSchema for Expiration
 
impl JsonSchema for Expiration
sourcefn schema_name() -> String
 
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
 
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn 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 more
sourceimpl PartialEq<Expiration> for Expiration
 
impl PartialEq<Expiration> for Expiration
sourcefn eq(&self, other: &Expiration) -> bool
 
fn eq(&self, other: &Expiration) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &Expiration) -> bool
 
fn ne(&self, other: &Expiration) -> bool
This method tests for !=.
sourceimpl Serialize for Expiration
 
impl Serialize for Expiration
impl Copy for Expiration
impl StructuralPartialEq for Expiration
Auto Trait Implementations
impl RefUnwindSafe for Expiration
impl Send for Expiration
impl Sync for Expiration
impl Unpin for Expiration
impl UnwindSafe for Expiration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more