pub struct AnyOf<T, Params> { /* private fields */ }
Expand description
This accepts a tuple of TransactionExtension
s, and will dynamically make use of whichever
ones are actually required for the chain in the correct order, ignoring the rest. This
is a sensible default, and allows for a single configuration to work across multiple chains.
Trait Implementations§
Source§impl<T, A> ExtrinsicParams<T> for AnyOf<T, (A,)>where
T: Config,
A: TransactionExtension<T>,
impl<T, A> ExtrinsicParams<T> for AnyOf<T, (A,)>where
T: Config,
A: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params,)
type Params = (<A as ExtrinsicParams<T>>::Params,)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B> ExtrinsicParams<T> for AnyOf<T, (A, B)>
impl<T, A, B> ExtrinsicParams<T> for AnyOf<T, (A, B)>
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C> ExtrinsicParams<T> for AnyOf<T, (A, B, C)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
impl<T, A, B, C> ExtrinsicParams<T> for AnyOf<T, (A, B, C)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
impl<T, A, B, C, D> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
impl<T, A, B, C, D, E> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
impl<T, A, B, C, D, E, F> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params, <S as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params, <S as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params, <S as ExtrinsicParams<T>>::Params, <U as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params, <S as ExtrinsicParams<T>>::Params, <U as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
V: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V> ExtrinsicParams<T> for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
V: TransactionExtension<T>,
Source§type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params, <S as ExtrinsicParams<T>>::Params, <U as ExtrinsicParams<T>>::Params, <V as ExtrinsicParams<T>>::Params)
type Params = (<A as ExtrinsicParams<T>>::Params, <B as ExtrinsicParams<T>>::Params, <C as ExtrinsicParams<T>>::Params, <D as ExtrinsicParams<T>>::Params, <E as ExtrinsicParams<T>>::Params, <F as ExtrinsicParams<T>>::Params, <G as ExtrinsicParams<T>>::Params, <H as ExtrinsicParams<T>>::Params, <I as ExtrinsicParams<T>>::Params, <J as ExtrinsicParams<T>>::Params, <K as ExtrinsicParams<T>>::Params, <L as ExtrinsicParams<T>>::Params, <M as ExtrinsicParams<T>>::Params, <N as ExtrinsicParams<T>>::Params, <O as ExtrinsicParams<T>>::Params, <P as ExtrinsicParams<T>>::Params, <Q as ExtrinsicParams<T>>::Params, <R as ExtrinsicParams<T>>::Params, <S as ExtrinsicParams<T>>::Params, <U as ExtrinsicParams<T>>::Params, <V as ExtrinsicParams<T>>::Params)
These parameters can be provided to the constructor along with
some default parameters that
subxt
understands, in order to
help construct your ExtrinsicParams
object.Source§fn new(
client: &ClientState<T>,
params: Self::Params,
) -> Result<Self, ExtrinsicParamsError>
fn new( client: &ClientState<T>, params: Self::Params, ) -> Result<Self, ExtrinsicParamsError>
Construct a new instance of our
ExtrinsicParams
.Source§impl<T, A> ExtrinsicParamsEncoder for AnyOf<T, (A,)>where
T: Config,
A: TransactionExtension<T>,
impl<T, A> ExtrinsicParamsEncoder for AnyOf<T, (A,)>where
T: Config,
A: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B> ExtrinsicParamsEncoder for AnyOf<T, (A, B)>
impl<T, A, B> ExtrinsicParamsEncoder for AnyOf<T, (A, B)>
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
impl<T, A, B, C> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
impl<T, A, B, C, D> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
impl<T, A, B, C, D, E> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
impl<T, A, B, C, D, E, F> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreSource§impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
V: TransactionExtension<T>,
impl<T, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V> ExtrinsicParamsEncoder for AnyOf<T, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, U, V)>where
T: Config,
A: TransactionExtension<T>,
B: TransactionExtension<T>,
C: TransactionExtension<T>,
D: TransactionExtension<T>,
E: TransactionExtension<T>,
F: TransactionExtension<T>,
G: TransactionExtension<T>,
H: TransactionExtension<T>,
I: TransactionExtension<T>,
J: TransactionExtension<T>,
K: TransactionExtension<T>,
L: TransactionExtension<T>,
M: TransactionExtension<T>,
N: TransactionExtension<T>,
O: TransactionExtension<T>,
P: TransactionExtension<T>,
Q: TransactionExtension<T>,
R: TransactionExtension<T>,
S: TransactionExtension<T>,
U: TransactionExtension<T>,
V: TransactionExtension<T>,
Source§fn encode_value_to(&self, v: &mut Vec<u8>)
fn encode_value_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the transaction extension data to some
buffer that has been provided. This data is attached to the transaction
and also (by default) attached to the signer payload which is signed to
provide a signature for the transaction. Read more
Source§fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
fn encode_signer_payload_value_to(&self, v: &mut Vec<u8>)
See
ExtrinsicParamsEncoder::encode_value_to
. This defaults to calling that
method, but if implemented will dictate what is encoded to the signer payload.Source§fn encode_implicit_to(&self, v: &mut Vec<u8>)
fn encode_implicit_to(&self, v: &mut Vec<u8>)
This is expected to SCALE encode the “implicit” (formally “additional”)
parameters to some buffer that has been provided. These parameters are
not sent along with the transaction, but are taken into account when
signing it, meaning the client and node must agree on their values.
Source§fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
fn inject_signature(&mut self, account_id: &dyn Any, signature: &dyn Any)
Set the signature. This happens after we have constructed the extrinsic params,
and so is defined here rather than on the params, below. We need to use
&dyn Any
to keep this trait object safe, but can downcast in the impls. Read moreAuto Trait Implementations§
impl<T, Params> Freeze for AnyOf<T, Params>
impl<T, Params> !RefUnwindSafe for AnyOf<T, Params>
impl<T, Params> Send for AnyOf<T, Params>
impl<T, Params> !Sync for AnyOf<T, Params>
impl<T, Params> Unpin for AnyOf<T, Params>
impl<T, Params> !UnwindSafe for AnyOf<T, Params>
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> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.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 moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.