pub struct CreateWalletSetRequest {
pub entity_secret_ciphertext: String,
pub idempotency_key: String,
pub name: Option<String>,
}Expand description
Request body for creating a new wallet set.
Fields§
§entity_secret_ciphertext: StringEncrypted entity secret ciphertext.
idempotency_key: StringIdempotency key (UUID) to deduplicate requests.
name: Option<String>Optional human-readable name for the wallet set.
Trait Implementations§
Source§impl Clone for CreateWalletSetRequest
impl Clone for CreateWalletSetRequest
Source§fn clone(&self) -> CreateWalletSetRequest
fn clone(&self) -> CreateWalletSetRequest
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 CreateWalletSetRequest
impl Debug for CreateWalletSetRequest
Auto Trait Implementations§
impl Freeze for CreateWalletSetRequest
impl RefUnwindSafe for CreateWalletSetRequest
impl Send for CreateWalletSetRequest
impl Sync for CreateWalletSetRequest
impl Unpin for CreateWalletSetRequest
impl UnsafeUnpin for CreateWalletSetRequest
impl UnwindSafe for CreateWalletSetRequest
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