pub struct RatesUpdate {
pub rebuild_rate_percent: Option<Int64>,
pub transformation_rate_percent: Option<Int64>,
pub consistency_check_rate_percent: Option<Int64>,
}Expand description
Update struct corresponding to Rates
Fields§
§rebuild_rate_percent: Option<Int64>§transformation_rate_percent: Option<Int64>§consistency_check_rate_percent: Option<Int64>Implementations§
Source§impl RatesUpdate
impl RatesUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_rebuild_rate_percent(self, v: Int64) -> Self
pub fn with_transformation_rate_percent(self, v: Int64) -> Self
pub fn with_consistency_check_rate_percent(self, v: Int64) -> Self
Trait Implementations§
Source§impl Debug for RatesUpdate
impl Debug for RatesUpdate
Source§impl Default for RatesUpdate
impl Default for RatesUpdate
Source§fn default() -> RatesUpdate
fn default() -> RatesUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RatesUpdate
impl RefUnwindSafe for RatesUpdate
impl Send for RatesUpdate
impl Sync for RatesUpdate
impl Unpin for RatesUpdate
impl UnsafeUnpin for RatesUpdate
impl UnwindSafe for RatesUpdate
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