pub enum FirmQuoteResponse {
Ok(Box<FirmQuoteOkResponse>),
PaymentInLieu(Box<FirmQuotePaymentInLieuResponse>),
Unavailable(Box<FirmQuoteUnavailableResponse>),
}
Variants§
Ok(Box<FirmQuoteOkResponse>)
Transaction must be sent via signatory server sendTransaction endpoint
PaymentInLieu(Box<FirmQuotePaymentInLieuResponse>)
Liquidity is unavailable, and payment in lieu is offered
Liquidity is unavailable, and payment in lieu is not offered
Trait Implementations§
Source§impl Clone for FirmQuoteResponse
impl Clone for FirmQuoteResponse
Source§fn clone(&self) -> FirmQuoteResponse
fn clone(&self) -> FirmQuoteResponse
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 FirmQuoteResponse
impl Debug for FirmQuoteResponse
Source§impl<'de> Deserialize<'de> for FirmQuoteResponse
impl<'de> Deserialize<'de> for FirmQuoteResponse
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 FirmQuoteResponse
impl PartialEq for FirmQuoteResponse
Source§impl Serialize for FirmQuoteResponse
impl Serialize for FirmQuoteResponse
impl StructuralPartialEq for FirmQuoteResponse
Auto Trait Implementations§
impl Freeze for FirmQuoteResponse
impl RefUnwindSafe for FirmQuoteResponse
impl Send for FirmQuoteResponse
impl Sync for FirmQuoteResponse
impl Unpin for FirmQuoteResponse
impl UnwindSafe for FirmQuoteResponse
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