pub enum LSPS1OrderState {
Created,
Completed,
Failed,
}Expand description
An object representing the status of an order.
Variants§
Created
The order has been created.
Completed
The LSP has opened the channel and published the funding transaction.
Failed
The order failed.
Trait Implementations§
Source§impl Clone for LSPS1OrderState
impl Clone for LSPS1OrderState
Source§fn clone(&self) -> LSPS1OrderState
fn clone(&self) -> LSPS1OrderState
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 LSPS1OrderState
impl Debug for LSPS1OrderState
Source§impl<'de> Deserialize<'de> for LSPS1OrderState
impl<'de> Deserialize<'de> for LSPS1OrderState
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 LSPS1OrderState
impl PartialEq for LSPS1OrderState
Source§impl Serialize for LSPS1OrderState
impl Serialize for LSPS1OrderState
impl Eq for LSPS1OrderState
impl StructuralPartialEq for LSPS1OrderState
Auto Trait Implementations§
impl Freeze for LSPS1OrderState
impl RefUnwindSafe for LSPS1OrderState
impl Send for LSPS1OrderState
impl Sync for LSPS1OrderState
impl Unpin for LSPS1OrderState
impl UnwindSafe for LSPS1OrderState
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