pub struct KaminoLastUpdate {
pub slot: u64,
pub stale: u8,
}Expand description
Slot-based staleness tracker.
Fields§
§slot: u64§stale: u8Trait Implementations§
Source§impl Clone for KaminoLastUpdate
impl Clone for KaminoLastUpdate
Source§fn clone(&self) -> KaminoLastUpdate
fn clone(&self) -> KaminoLastUpdate
Returns a duplicate 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 KaminoLastUpdate
impl Debug for KaminoLastUpdate
Source§impl Default for KaminoLastUpdate
impl Default for KaminoLastUpdate
Source§fn default() -> KaminoLastUpdate
fn default() -> KaminoLastUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KaminoLastUpdate
impl<'de> Deserialize<'de> for KaminoLastUpdate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for KaminoLastUpdate
impl RefUnwindSafe for KaminoLastUpdate
impl Send for KaminoLastUpdate
impl Sync for KaminoLastUpdate
impl Unpin for KaminoLastUpdate
impl UnsafeUnpin for KaminoLastUpdate
impl UnwindSafe for KaminoLastUpdate
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