pub enum TeleportStatus {
Initiated,
PendingConfirmation,
Processing,
Minting,
Completed,
Failed(String),
}Variants§
Initiated
Transfer initiated on AI protocol
PendingConfirmation
Waiting for protocol confirmations
Processing
Transfer being processed by relayers
Minting
Minting on destination chain
Completed
Transfer complete
Failed(String)
Transfer failed
Trait Implementations§
Source§impl Clone for TeleportStatus
impl Clone for TeleportStatus
Source§fn clone(&self) -> TeleportStatus
fn clone(&self) -> TeleportStatus
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 TeleportStatus
impl Debug for TeleportStatus
Source§impl<'de> Deserialize<'de> for TeleportStatus
impl<'de> Deserialize<'de> for TeleportStatus
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 PartialEq for TeleportStatus
impl PartialEq for TeleportStatus
Source§fn eq(&self, other: &TeleportStatus) -> bool
fn eq(&self, other: &TeleportStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TeleportStatus
impl Serialize for TeleportStatus
impl StructuralPartialEq for TeleportStatus
Auto Trait Implementations§
impl Freeze for TeleportStatus
impl RefUnwindSafe for TeleportStatus
impl Send for TeleportStatus
impl Sync for TeleportStatus
impl Unpin for TeleportStatus
impl UnsafeUnpin for TeleportStatus
impl UnwindSafe for TeleportStatus
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