pub struct UiInterestBearingConfig {
pub rate_authority: Option<String>,
pub initialization_timestamp: i64,
pub pre_update_average_rate: i16,
pub last_update_timestamp: i64,
pub current_rate: i16,
}Fields§
§initialization_timestamp: i64§pre_update_average_rate: i16§last_update_timestamp: i64§current_rate: i16Trait Implementations§
Source§impl Debug for UiInterestBearingConfig
impl Debug for UiInterestBearingConfig
Source§impl<'de> Deserialize<'de> for UiInterestBearingConfig
impl<'de> Deserialize<'de> for UiInterestBearingConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UiInterestBearingConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UiInterestBearingConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UiInterestBearingConfig
impl PartialEq for UiInterestBearingConfig
Source§impl Serialize for UiInterestBearingConfig
impl Serialize for UiInterestBearingConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for UiInterestBearingConfig
impl StructuralPartialEq for UiInterestBearingConfig
Auto Trait Implementations§
impl Freeze for UiInterestBearingConfig
impl RefUnwindSafe for UiInterestBearingConfig
impl Send for UiInterestBearingConfig
impl Sync for UiInterestBearingConfig
impl Unpin for UiInterestBearingConfig
impl UnwindSafe for UiInterestBearingConfig
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