pub struct SubAccount {
pub subaccount_id: String,
pub label: String,
pub smart_account_address: String,
pub status: String,
pub updated_at: Option<Timestamp>,
pub revision: u64,
}Fields§
§subaccount_id: String§label: String§smart_account_address: String§status: String§updated_at: Option<Timestamp>§revision: u64Monotonic resource revision for conditional updates.
Trait Implementations§
Source§impl Clone for SubAccount
impl Clone for SubAccount
Source§fn clone(&self) -> SubAccount
fn clone(&self) -> SubAccount
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 moreSource§impl Debug for SubAccount
impl Debug for SubAccount
Source§impl PartialEq for SubAccount
impl PartialEq for SubAccount
impl StructuralPartialEq for SubAccount
Auto Trait Implementations§
impl Freeze for SubAccount
impl RefUnwindSafe for SubAccount
impl Send for SubAccount
impl Sync for SubAccount
impl Unpin for SubAccount
impl UnsafeUnpin for SubAccount
impl UnwindSafe for SubAccount
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