pub struct SendOutput {
pub big_r: String,
pub view_tag: String,
pub spending_pub_key: String,
}Expand description
send output {R, viewTag, spendingPubKey} for a given ephemeral r
(decimal). The Go send picks r randomly; pass the recorded r to reproduce.
Fields§
§big_r: String§view_tag: String§spending_pub_key: StringAuto Trait Implementations§
impl Freeze for SendOutput
impl RefUnwindSafe for SendOutput
impl Send for SendOutput
impl Sync for SendOutput
impl Unpin for SendOutput
impl UnsafeUnpin for SendOutput
impl UnwindSafe for SendOutput
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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