pub enum TileLifecycle {
Active,
Superseded,
Retracted,
}Expand description
Tile lifecycle states — mirrors PLATO v3.
Variants§
Trait Implementations§
Source§impl Clone for TileLifecycle
impl Clone for TileLifecycle
Source§fn clone(&self) -> TileLifecycle
fn clone(&self) -> TileLifecycle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TileLifecycle
impl Debug for TileLifecycle
Source§impl Display for TileLifecycle
impl Display for TileLifecycle
Source§impl Ord for TileLifecycle
impl Ord for TileLifecycle
Source§fn cmp(&self, other: &TileLifecycle) -> Ordering
fn cmp(&self, other: &TileLifecycle) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TileLifecycle
impl PartialEq for TileLifecycle
Source§fn eq(&self, other: &TileLifecycle) -> bool
fn eq(&self, other: &TileLifecycle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TileLifecycle
impl PartialOrd for TileLifecycle
impl Copy for TileLifecycle
impl Eq for TileLifecycle
impl StructuralPartialEq for TileLifecycle
Auto Trait Implementations§
impl Freeze for TileLifecycle
impl RefUnwindSafe for TileLifecycle
impl Send for TileLifecycle
impl Sync for TileLifecycle
impl Unpin for TileLifecycle
impl UnsafeUnpin for TileLifecycle
impl UnwindSafe for TileLifecycle
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