pub struct WalletResponse {Show 14 fields
pub id: String,
pub address: String,
pub chain_type: String,
pub wallet_client_type: Option<String>,
pub connector_type: Option<String>,
pub imported: Option<bool>,
pub delegated: Option<bool>,
pub hd_path: Option<String>,
pub public_key: Option<String>,
pub owner_id: Option<String>,
pub policy_ids: Option<Vec<String>>,
pub additional_signers: Option<Vec<String>>,
pub exported_at: Option<i64>,
pub created_at: Option<i64>,
}
Fields§
§id: String
§address: String
§chain_type: String
§wallet_client_type: Option<String>
§connector_type: Option<String>
§imported: Option<bool>
§delegated: Option<bool>
§hd_path: Option<String>
§public_key: Option<String>
§owner_id: Option<String>
§policy_ids: Option<Vec<String>>
§additional_signers: Option<Vec<String>>
§exported_at: Option<i64>
§created_at: Option<i64>
Trait Implementations§
Source§impl Debug for WalletResponse
impl Debug for WalletResponse
Source§impl<'de> Deserialize<'de> for WalletResponse
impl<'de> Deserialize<'de> for WalletResponse
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
Auto Trait Implementations§
impl Freeze for WalletResponse
impl RefUnwindSafe for WalletResponse
impl Send for WalletResponse
impl Sync for WalletResponse
impl Unpin for WalletResponse
impl UnwindSafe for WalletResponse
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
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