WithMemo

Trait WithMemo 

Source
pub trait WithMemo {
    // Required method
    fn with_memo<T: AsRef<str>>(self, memo: Option<T>) -> Self;
}

Required Methods§

Source

fn with_memo<T: AsRef<str>>(self, memo: Option<T>) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl WithMemo for Vec<Instruction>

Source§

fn with_memo<T: AsRef<str>>(self, memo: Option<T>) -> Self

Implementors§