Struct switchboard_utils::protobufs::oracle_job::LpExchangeRateTask   
source · pub struct LpExchangeRateTask {
    pub in_token_address: Option<String>,
    pub out_token_address: Option<String>,
    pub pool_address: Option<PoolAddress>,
}Expand description
Fetch the current swap price for a given liquidity pool
Input: None
Returns: The swap price for a given AMM pool.
Example: Fetch the exchange rate from the Orca SOL/USDC pool
{ "lpExchangeRateTask": { "orcaPoolAddress": "APDFRM3HMr8CAGXwKHiu2f5ePSpaiEJhaURwhsRrUUt9" } }
Example: Fetch the exchange rate from the Raydium SOL/USDC pool
{ "lpExchangeRateTask": { "raydiumPoolAddress": "58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2" } }
Fields§
§in_token_address: Option<String>/ Used alongside mercurial_pool_address to specify the input token for a swap.
out_token_address: Option<String>/ Used alongside mercurial_pool_address to specify the output token for a swap.
pool_address: Option<PoolAddress>Implementations§
source§impl LpExchangeRateTask
 
impl LpExchangeRateTask
sourcepub fn in_token_address(&self) -> &str
 
pub fn in_token_address(&self) -> &str
Returns the value of in_token_address, or the default value if in_token_address is unset.
sourcepub fn out_token_address(&self) -> &str
 
pub fn out_token_address(&self) -> &str
Returns the value of out_token_address, or the default value if out_token_address is unset.
Trait Implementations§
source§impl Clone for LpExchangeRateTask
 
impl Clone for LpExchangeRateTask
source§fn clone(&self) -> LpExchangeRateTask
 
fn clone(&self) -> LpExchangeRateTask
Returns a copy 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 LpExchangeRateTask
 
impl Debug for LpExchangeRateTask
source§impl Default for LpExchangeRateTask
 
impl Default for LpExchangeRateTask
source§impl Message for LpExchangeRateTask
 
impl Message for LpExchangeRateTask
source§fn encoded_len(&self) -> usize
 
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
    B: BufMut,
    Self: Sized,
 
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where B: BufMut, Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8, Global>where
    Self: Sized,
 
fn encode_to_vec(&self) -> Vec<u8, Global>where Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
    B: BufMut,
    Self: Sized,
 
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where B: BufMut, Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>where
    Self: Sized,
 
fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>where Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
    B: Buf,
    Self: Default,
 
fn decode<B>(buf: B) -> Result<Self, DecodeError>where B: Buf, Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
    B: Buf,
    Self: Default,
 
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where B: Buf, Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
    B: Buf,
    Self: Sized,
 
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where B: Buf, Self: Sized,
Decodes an instance of the message from a buffer, and merges it into 
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
    B: Buf,
    Self: Sized,
 
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where B: Buf, Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into 
self.source§impl PartialEq<LpExchangeRateTask> for LpExchangeRateTask
 
impl PartialEq<LpExchangeRateTask> for LpExchangeRateTask
source§fn eq(&self, other: &LpExchangeRateTask) -> bool
 
fn eq(&self, other: &LpExchangeRateTask) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LpExchangeRateTask
Auto Trait Implementations§
impl RefUnwindSafe for LpExchangeRateTask
impl Send for LpExchangeRateTask
impl Sync for LpExchangeRateTask
impl Unpin for LpExchangeRateTask
impl UnwindSafe for LpExchangeRateTask
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