pub struct StudioService<'a> { /* private fields */ }Implementations§
Source§impl<'a> StudioService<'a>
impl<'a> StudioService<'a>
pub fn new(client: &'a JupiterClient) -> Self
pub async fn pool_create_tx( &self, req: &PoolCreateTxReq, ) -> Result<PoolCreateTxReq, JupiterError>
pub async fn pool_submit( &self, req: &PoolSubmitReq, ) -> Result<PoolSubmitRes, JupiterError>
pub async fn get_pool_by_mint( &self, mint: String, ) -> Result<GetPoolByMintRes, JupiterError>
pub async fn get_dbc_fee( &self, req: &GetDbcFeeReq, ) -> Result<GetDbcFeeRes, JupiterError>
pub async fn dbc_fee_create_tx( &self, req: &DbcFeeCreateTxReq, ) -> Result<DbcFeeCreateTxRes, JupiterError>
Trait Implementations§
Source§impl<'a> Clone for StudioService<'a>
impl<'a> Clone for StudioService<'a>
Source§fn clone(&self) -> StudioService<'a>
fn clone(&self) -> StudioService<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for StudioService<'a>
impl<'a> !RefUnwindSafe for StudioService<'a>
impl<'a> Send for StudioService<'a>
impl<'a> Sync for StudioService<'a>
impl<'a> Unpin for StudioService<'a>
impl<'a> UnsafeUnpin for StudioService<'a>
impl<'a> !UnwindSafe for StudioService<'a>
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