pub struct TimeDelayedRecoveryConfig {
pub delay_seconds: u64,
pub network: Network,
}Expand description
Time-delayed recovery configuration
Fields§
§delay_seconds: u64Delay period in seconds before recovery is possible
network: NetworkNetwork to use
Trait Implementations§
Source§impl Clone for TimeDelayedRecoveryConfig
impl Clone for TimeDelayedRecoveryConfig
Source§fn clone(&self) -> TimeDelayedRecoveryConfig
fn clone(&self) -> TimeDelayedRecoveryConfig
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 TimeDelayedRecoveryConfig
impl Debug for TimeDelayedRecoveryConfig
Source§impl Default for TimeDelayedRecoveryConfig
impl Default for TimeDelayedRecoveryConfig
Source§impl<'de> Deserialize<'de> for TimeDelayedRecoveryConfig
impl<'de> Deserialize<'de> for TimeDelayedRecoveryConfig
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 TimeDelayedRecoveryConfig
impl RefUnwindSafe for TimeDelayedRecoveryConfig
impl Send for TimeDelayedRecoveryConfig
impl Sync for TimeDelayedRecoveryConfig
impl Unpin for TimeDelayedRecoveryConfig
impl UnwindSafe for TimeDelayedRecoveryConfig
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