SwapInfo

Struct SwapInfo 

Source
#[repr(C)]
pub struct SwapInfo {
Show 14 fields pub is_initialized: bool, pub is_paused: bool, pub nonce: u8, pub initial_amp_factor: u64, pub target_amp_factor: u64, pub start_ramp_ts: i64, pub stop_ramp_ts: i64, pub future_admin_deadline: i64, pub future_admin_key: Pubkey, pub admin_key: Pubkey, pub token_a: SwapTokenInfo, pub token_b: SwapTokenInfo, pub pool_mint: Pubkey, pub fees: Fees,
}
Expand description

Program states.

Fields§

§is_initialized: bool

Initialized state

§is_paused: bool

Paused state

§nonce: u8

Nonce used in program address The program address is created deterministically with the nonce, swap program id, and swap account pubkey. This program address has authority over the swap’s token A account, token B account, and pool token mint.

§initial_amp_factor: u64

Initial amplification coefficient (A)

§target_amp_factor: u64

Target amplification coefficient (A)

§start_ramp_ts: i64

Ramp A start timestamp

§stop_ramp_ts: i64

Ramp A stop timestamp

§future_admin_deadline: i64

Deadline to transfer admin control to future_admin_key

§future_admin_key: Pubkey

Public key of the admin account to be applied

§admin_key: Pubkey

Public key of admin account to execute admin instructions

§token_a: SwapTokenInfo

Token A

§token_b: SwapTokenInfo

Token B

§pool_mint: Pubkey

Pool tokens are issued when A or B tokens are deposited. Pool tokens can be withdrawn back to the original A or B token.

§fees: Fees

Fees

Trait Implementations§

Source§

impl Clone for SwapInfo

Source§

fn clone(&self) -> SwapInfo

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SwapInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl IsInitialized for SwapInfo

Source§

fn is_initialized(&self) -> bool

Is initialized
Source§

impl Pack for SwapInfo

Source§

const LEN: usize = 395usize

The length, in bytes, of the packed representation
Source§

fn get_packed_len() -> usize

Get the packed length
Source§

fn unpack(input: &[u8]) -> Result<Self, ProgramError>
where Self: IsInitialized,

Unpack from slice and check if initialized
Source§

fn unpack_unchecked(input: &[u8]) -> Result<Self, ProgramError>

Unpack from slice without checking if initialized
Source§

fn pack(src: Self, dst: &mut [u8]) -> Result<(), ProgramError>

Pack into slice
Source§

impl PartialEq for SwapInfo

Source§

fn eq(&self, other: &SwapInfo) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for SwapInfo

Source§

impl Sealed for SwapInfo

Source§

impl StructuralPartialEq for SwapInfo

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> AbiExample for T

Source§

default fn example() -> T

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V