pub struct Transcript<A: Address, Sends, New> {
pub sends: Sends,
pub creates: Vec<Create<A, New>>,
pub exit: Exit<A>,
}Fields§
§sends: Sends§creates: Vec<Create<A, New>>§exit: Exit<A>Implementations§
Auto Trait Implementations§
impl<A, Sends, New> Freeze for Transcript<A, Sends, New>
impl<A, Sends, New> RefUnwindSafe for Transcript<A, Sends, New>where
Sends: RefUnwindSafe,
A: RefUnwindSafe,
<A as Address>::Nonce: RefUnwindSafe,
New: RefUnwindSafe,
impl<A, Sends, New> Send for Transcript<A, Sends, New>
impl<A, Sends, New> Sync for Transcript<A, Sends, New>
impl<A, Sends, New> Unpin for Transcript<A, Sends, New>
impl<A, Sends, New> UnsafeUnpin for Transcript<A, Sends, New>where
Sends: UnsafeUnpin,
A: UnsafeUnpin,
impl<A, Sends, New> UnwindSafe for Transcript<A, Sends, New>
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