#[repr(C)]
pub struct MangoAccountFixed {
Show 19 fields pub group: Pubkey, pub owner: Pubkey, pub name: [u8; 32], pub delegate: Pubkey, pub account_num: u32, pub bump: u8, pub sequence_number: u8, pub net_deposits: i64, pub perp_spot_transfers: i64, pub health_region_begin_init_health: i64, pub frozen_until: u64, pub buyback_fees_accrued_current: u64, pub buyback_fees_accrued_previous: u64, pub buyback_fees_expiry_timestamp: u64, pub next_token_conditional_swap_id: u64, pub temporary_delegate: Pubkey, pub temporary_delegate_expiry: u64, pub last_collateral_fee_charge: u64, pub reserved: [u8; 152], /* private fields */
}

Fields§

§group: Pubkey§owner: Pubkey§name: [u8; 32]§delegate: Pubkey§account_num: u32§bump: u8§sequence_number: u8§net_deposits: i64§perp_spot_transfers: i64§health_region_begin_init_health: i64§frozen_until: u64§buyback_fees_accrued_current: u64§buyback_fees_accrued_previous: u64§buyback_fees_expiry_timestamp: u64§next_token_conditional_swap_id: u64§temporary_delegate: Pubkey§temporary_delegate_expiry: u64§last_collateral_fee_charge: u64§reserved: [u8; 152]

Implementations§

source§

impl MangoAccountFixed

source

pub fn name(&self) -> &str

source

pub fn is_operational(&self) -> bool

source

pub fn is_owner_or_delegate(&self, ix_signer: Pubkey) -> bool

source

pub fn is_delegate(&self, ix_signer: Pubkey) -> bool

source

pub fn being_liquidated(&self) -> bool

source

pub fn set_being_liquidated(&mut self, b: bool)

source

pub fn is_in_health_region(&self) -> bool

source

pub fn set_in_health_region(&mut self, b: bool)

source

pub fn maybe_recover_from_being_liquidated( &mut self, liq_end_health: I80F48 ) -> bool

source

pub fn expire_buyback_fees(&mut self, now_ts: u64, interval: u64)

Updates the buyback_fees_* fields for staggered expiry of available amounts.

source

pub fn buyback_fees_accrued(&self) -> u64

The total buyback fees amount that the account can make use of.

source

pub fn accrue_buyback_fees(&mut self, amount: u64)

Add new fees that are usable with the buyback fees feature.

Any call to this should be preceeded by a call to expire_buyback_fees earlier in the same instruction.

source

pub fn reduce_buyback_fees_accrued(&mut self, amount: u64)

Reduce the available buyback fees amount because it was used up.

Panics if amount exceeds the available accrued amount

source

pub fn pda_seeds(&self) -> MangoAccountPdaSeeds

Trait Implementations§

source§

impl Clone for MangoAccountFixed

source§

fn clone(&self) -> MangoAccountFixed

Returns a copy 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 Discriminator for MangoAccountFixed

source§

const DISCRIMINATOR: [u8; 8] = MangoAccount::DISCRIMINATOR

§

fn discriminator() -> [u8; 8]

source§

impl Owner for MangoAccountFixed

source§

fn owner() -> Pubkey

source§

impl Zeroable for MangoAccountFixed

§

fn zeroed() -> Self

source§

impl Copy for MangoAccountFixed

source§

impl Pod for MangoAccountFixed

source§

impl ZeroCopy for MangoAccountFixed

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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<Src, Dst> LosslessTryInto<Dst> for Srcwhere Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Srcwhere Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
§

impl<T> AnyBitPattern for Twhere T: Pod,

§

impl<T> NoUninit for Twhere T: Pod,