Struct smoldot_light::AddChainConfig
source · pub struct AddChainConfig<'a, TChain, TRelays> {
pub user_data: TChain,
pub specification: &'a str,
pub database_content: &'a str,
pub potential_relay_chains: TRelays,
pub json_rpc: AddChainConfigJsonRpc,
}
Expand description
See Client::add_chain
.
Fields§
§user_data: TChain
Opaque user data that the Client
will hold for this chain. Can later be accessed using
the Index
and IndexMut
trait implementations on the Client
.
specification: &'a str
JSON text containing the specification of the chain (the so-called “chain spec”).
database_content: &'a str
Opaque data containing the database content that was retrieved by calling
the chainHead_unstable_finalizedDatabase
JSON-RPC function in the past.
Pass an empty string if no database content exists or is known.
No error is generated if this data is invalid and/or can’t be decoded. The implementation reserves the right to break the format of this data at any point.
potential_relay_chains: TRelays
If AddChainConfig
defines a parachain, contains the list of relay chains to choose
from. Ignored if not a parachain.
This field is necessary because multiple different chain can have the same identity. If
the client tried to find the corresponding relay chain in all the previously-spawned
chains, it means that a call to Client::add_chain
could influence the outcome of a
subsequent call to Client::add_chain
.
For example: if user A adds a chain named “Kusama”, then user B adds a different chain also named “Kusama”, then user B adds a parachain whose relay chain is “Kusama”, it would be wrong to connect to the “Kusama” created by user A.
json_rpc: AddChainConfigJsonRpc
Configuration for the JSON-RPC endpoint.
Trait Implementations§
Auto Trait Implementations§
impl<'a, TChain, TRelays> RefUnwindSafe for AddChainConfig<'a, TChain, TRelays>where
TChain: RefUnwindSafe,
TRelays: RefUnwindSafe,
impl<'a, TChain, TRelays> Send for AddChainConfig<'a, TChain, TRelays>
impl<'a, TChain, TRelays> Sync for AddChainConfig<'a, TChain, TRelays>
impl<'a, TChain, TRelays> Unpin for AddChainConfig<'a, TChain, TRelays>
impl<'a, TChain, TRelays> UnwindSafe for AddChainConfig<'a, TChain, TRelays>where
TChain: UnwindSafe,
TRelays: UnwindSafe,
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.