[][src]Struct exonum::blockchain::config::InstanceInitParams

#[non_exhaustive]pub struct InstanceInitParams {
    pub instance_spec: InstanceSpec,
    pub constructor: Vec<u8>,
}

Data that is required for initialization of a service instance.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
instance_spec: InstanceSpec

Instance specification.

constructor: Vec<u8>

Constructor argument for the instance.

Methods

impl InstanceInitParams[src]

pub fn new(
    id: InstanceId,
    name: impl Into<String>,
    artifact: ArtifactId,
    constructor: impl BinaryValue
) -> Self
[src]

Generic constructor.

pub fn with_constructor(self, constructor: impl BinaryValue) -> Self[src]

Converts into InstanceInitParams with specific constructor.

Trait Implementations

impl BinaryValue for InstanceInitParams[src]

impl Clone for InstanceInitParams[src]

impl Debug for InstanceInitParams[src]

impl<'de> Deserialize<'de> for InstanceInitParams[src]

impl Eq for InstanceInitParams[src]

impl From<InstanceSpec> for InstanceInitParams[src]

impl Hash for InstanceInitParams[src]

impl ObjectHash for InstanceInitParams[src]

impl PartialEq<InstanceInitParams> for InstanceInitParams[src]

impl ProtobufConvert for InstanceInitParams[src]

type ProtoStruct = InstanceInitParams

Type generated from the Protobuf definition.

impl Serialize for InstanceInitParams[src]

impl StructuralEq for InstanceInitParams[src]

impl StructuralPartialEq for InstanceInitParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,