pub enum DownloadConfigType {
Validator,
RPC,
Archival,
}
Expand description
Type of the configuration to download.
Currently used for downloading the config.json
file for different node types.
Variants§
Validator
Validator node configuration.
RPC
Non-validator RPC node configuration.
Archival
Non-validator archival node configuration.
Trait Implementations§
Source§impl Clone for DownloadConfigType
impl Clone for DownloadConfigType
Source§fn clone(&self) -> DownloadConfigType
fn clone(&self) -> DownloadConfigType
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 DownloadConfigType
impl Debug for DownloadConfigType
Source§impl FromStr for DownloadConfigType
impl FromStr for DownloadConfigType
Auto Trait Implementations§
impl Freeze for DownloadConfigType
impl RefUnwindSafe for DownloadConfigType
impl Send for DownloadConfigType
impl Sync for DownloadConfigType
impl Unpin for DownloadConfigType
impl UnwindSafe for DownloadConfigType
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