pub struct RemainderDataDto {
pub output: OutputDto,
pub chain: Option<Bip44>,
pub address: AddressDto,
}
Available on crate feature
client
only.Expand description
Data for a remainder output, used for ledger nano
Fields§
§output: OutputDto
The remainder output
chain: Option<Bip44>
The chain derived from seed, for the remainder addresses
address: AddressDto
The remainder address
Trait Implementations§
Source§impl Clone for RemainderDataDto
impl Clone for RemainderDataDto
Source§fn clone(&self) -> RemainderDataDto
fn clone(&self) -> RemainderDataDto
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 RemainderDataDto
impl Debug for RemainderDataDto
Source§impl<'de> Deserialize<'de> for RemainderDataDto
impl<'de> Deserialize<'de> for RemainderDataDto
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
Source§impl From<&RemainderData> for RemainderDataDto
impl From<&RemainderData> for RemainderDataDto
Source§fn from(remainder: &RemainderData) -> Self
fn from(remainder: &RemainderData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemainderDataDto
impl PartialEq for RemainderDataDto
Source§impl Serialize for RemainderDataDto
impl Serialize for RemainderDataDto
impl Eq for RemainderDataDto
impl StructuralPartialEq for RemainderDataDto
Auto Trait Implementations§
impl Freeze for RemainderDataDto
impl RefUnwindSafe for RemainderDataDto
impl Send for RemainderDataDto
impl Sync for RemainderDataDto
impl Unpin for RemainderDataDto
impl UnwindSafe for RemainderDataDto
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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