#[non_exhaustive]pub struct DynamicWalletClientOpts {
pub environment_id: String,
pub base_api_url: Option<String>,
pub base_mpc_relay_url: Option<String>,
}Expand description
Construction options for DynamicWalletClient. #[non_exhaustive]
so we can add fields non-breakingly.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.environment_id: String§base_api_url: Option<String>§base_mpc_relay_url: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for DynamicWalletClientOpts
impl Clone for DynamicWalletClientOpts
Source§fn clone(&self) -> DynamicWalletClientOpts
fn clone(&self) -> DynamicWalletClientOpts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DynamicWalletClientOpts
impl RefUnwindSafe for DynamicWalletClientOpts
impl Send for DynamicWalletClientOpts
impl Sync for DynamicWalletClientOpts
impl Unpin for DynamicWalletClientOpts
impl UnsafeUnpin for DynamicWalletClientOpts
impl UnwindSafe for DynamicWalletClientOpts
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