Struct iota_client::api::RemainderDataDto
source · [−]pub struct RemainderDataDto {
pub output: OutputDto,
pub chain: Option<Chain>,
pub address: AddressDto,
}Expand description
Data for a remainder output, used for ledger nano
Fields
output: OutputDtoThe remainder output
chain: Option<Chain>The chain derived from seed, for the remainder addresses
address: AddressDtoThe remainder address
Trait Implementations
sourceimpl Clone for RemainderDataDto
impl Clone for RemainderDataDto
sourcefn clone(&self) -> RemainderDataDto
fn clone(&self) -> RemainderDataDto
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RemainderDataDto
impl Debug for RemainderDataDto
sourceimpl<'de> Deserialize<'de> for RemainderDataDto
impl<'de> Deserialize<'de> for RemainderDataDto
sourcefn 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
sourceimpl From<&RemainderData> for RemainderDataDto
impl From<&RemainderData> for RemainderDataDto
sourcefn from(remainder: &RemainderData) -> Self
fn from(remainder: &RemainderData) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<RemainderDataDto> for RemainderDataDto
impl PartialEq<RemainderDataDto> for RemainderDataDto
sourcefn eq(&self, other: &RemainderDataDto) -> bool
fn eq(&self, other: &RemainderDataDto) -> bool
sourceimpl Serialize for RemainderDataDto
impl Serialize for RemainderDataDto
impl Eq for RemainderDataDto
impl StructuralEq for RemainderDataDto
impl StructuralPartialEq for RemainderDataDto
Auto Trait Implementations
impl RefUnwindSafe for RemainderDataDto
impl Send for RemainderDataDto
impl Sync for RemainderDataDto
impl Unpin for RemainderDataDto
impl UnwindSafe for RemainderDataDto
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.