pub struct BorrowingFeesUpdated {
pub rev: u64,
pub market_token: Pubkey,
pub update_borrowing_state: UpdateBorrowingReport<u128>,
}
Expand description
Market borrowing fees updated event.
Fields§
§rev: u64
Revision.
market_token: Pubkey
Market token.
update_borrowing_state: UpdateBorrowingReport<u128>
Update borrowing state report.
Implementations§
Source§impl BorrowingFeesUpdated
impl BorrowingFeesUpdated
Sourcepub fn from_report(
rev: u64,
market_token: Pubkey,
update_borrowing_state: UpdateBorrowingReport<u128>,
) -> Self
pub fn from_report( rev: u64, market_token: Pubkey, update_borrowing_state: UpdateBorrowingReport<u128>, ) -> Self
Create from report.
Trait Implementations§
Source§impl BorshDeserialize for BorrowingFeesUpdatedwhere
u64: BorshDeserialize,
Pubkey: BorshDeserialize,
UpdateBorrowingReport<u128>: BorshDeserialize,
impl BorshDeserialize for BorrowingFeesUpdatedwhere
u64: BorshDeserialize,
Pubkey: BorshDeserialize,
UpdateBorrowingReport<u128>: BorshDeserialize,
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl BorshSerialize for BorrowingFeesUpdated
impl BorshSerialize for BorrowingFeesUpdated
Source§impl Debug for BorrowingFeesUpdated
impl Debug for BorrowingFeesUpdated
Source§impl Discriminator for BorrowingFeesUpdated
impl Discriminator for BorrowingFeesUpdated
const DISCRIMINATOR: [u8; 8]
fn discriminator() -> [u8; 8]
Source§impl Event for BorrowingFeesUpdated
impl Event for BorrowingFeesUpdated
Source§impl InitSpace for BorrowingFeesUpdated
impl InitSpace for BorrowingFeesUpdated
Source§const INIT_SPACE: usize = 80usize
const INIT_SPACE: usize = 80usize
Init Space.
Auto Trait Implementations§
impl Freeze for BorrowingFeesUpdated
impl RefUnwindSafe for BorrowingFeesUpdated
impl Send for BorrowingFeesUpdated
impl Sync for BorrowingFeesUpdated
impl Unpin for BorrowingFeesUpdated
impl UnwindSafe for BorrowingFeesUpdated
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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