pub struct _Validator {Show 18 fields
pub account: Option<Vec<AccountEntry>>,
pub account_dir: Option<Vec<AccountDirEntry>>,
pub bind_address: Option<String>,
pub clone: Option<Vec<CloneEntry>>,
pub dynamic_port_range: Option<String>,
pub faucet_port: Option<u16>,
pub faucet_sol: Option<String>,
pub geyser_plugin_config: Option<String>,
pub gossip_host: Option<String>,
pub gossip_port: Option<u16>,
pub url: Option<String>,
pub ledger: Option<String>,
pub limit_ledger_size: Option<String>,
pub rpc_port: Option<u16>,
pub slots_per_epoch: Option<String>,
pub ticks_per_slot: Option<u16>,
pub warp_slot: Option<String>,
pub deactivate_feature: Option<Vec<String>>,
}Fields§
§account: Option<Vec<AccountEntry>>§account_dir: Option<Vec<AccountDirEntry>>§bind_address: Option<String>§clone: Option<Vec<CloneEntry>>§dynamic_port_range: Option<String>§faucet_port: Option<u16>§faucet_sol: Option<String>§geyser_plugin_config: Option<String>§gossip_host: Option<String>§gossip_port: Option<u16>§url: Option<String>§ledger: Option<String>§limit_ledger_size: Option<String>§rpc_port: Option<u16>§slots_per_epoch: Option<String>§ticks_per_slot: Option<u16>§warp_slot: Option<String>§deactivate_feature: Option<Vec<String>>Trait Implementations§
Source§impl Clone for _Validator
impl Clone for _Validator
Source§fn clone(&self) -> _Validator
fn clone(&self) -> _Validator
Returns a copy 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 _Validator
impl Debug for _Validator
Source§impl Default for _Validator
impl Default for _Validator
Source§fn default() -> _Validator
fn default() -> _Validator
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for _Validator
impl<'de> Deserialize<'de> for _Validator
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
Source§impl From<Validator> for _Validator
impl From<Validator> for _Validator
Source§impl From<_Validator> for Validator
impl From<_Validator> for Validator
Source§fn from(_validator: _Validator) -> Self
fn from(_validator: _Validator) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for _Validator
impl RefUnwindSafe for _Validator
impl Send for _Validator
impl Sync for _Validator
impl Unpin for _Validator
impl UnwindSafe for _Validator
Blanket Implementations§
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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