pub struct LSPS1OrderStatus {
pub order_id: LSPS1OrderId,
pub order_params: LSPS1OrderParams,
pub payment_options: LSPS1PaymentInfo,
pub channel_state: Option<LSPS1ChannelInfo>,
}Expand description
Represents the status of an LSPS1 channel request.
Fields§
§order_id: LSPS1OrderIdThe id of the channel order.
order_params: LSPS1OrderParamsThe parameters of channel order.
payment_options: LSPS1PaymentInfoContains details about how to pay for the order.
channel_state: Option<LSPS1ChannelInfo>Contains information about the channel state.
Trait Implementations§
Source§impl Clone for LSPS1OrderStatus
impl Clone for LSPS1OrderStatus
Source§fn clone(&self) -> LSPS1OrderStatus
fn clone(&self) -> LSPS1OrderStatus
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 moreAuto Trait Implementations§
impl Freeze for LSPS1OrderStatus
impl RefUnwindSafe for LSPS1OrderStatus
impl Send for LSPS1OrderStatus
impl Sync for LSPS1OrderStatus
impl Unpin for LSPS1OrderStatus
impl UnwindSafe for LSPS1OrderStatus
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