pub struct CreateDepositDataParams {
pub key_path: PathBuf,
pub output_path: PathBuf,
pub withdrawal_credentials: String,
pub amount_gwei: u64,
pub fork_version: [u8; 4],
pub genesis_validators_root: String,
pub overwrite: bool,
pub network_name: Option<String>,
}Fields§
§key_path: PathBuf§output_path: PathBuf§withdrawal_credentials: String§amount_gwei: u64§fork_version: [u8; 4]§genesis_validators_root: String§overwrite: bool§network_name: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for CreateDepositDataParams
impl Clone for CreateDepositDataParams
Source§fn clone(&self) -> CreateDepositDataParams
fn clone(&self) -> CreateDepositDataParams
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 moreAuto Trait Implementations§
impl Freeze for CreateDepositDataParams
impl RefUnwindSafe for CreateDepositDataParams
impl Send for CreateDepositDataParams
impl Sync for CreateDepositDataParams
impl Unpin for CreateDepositDataParams
impl UnwindSafe for CreateDepositDataParams
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