[][src]Struct exonum_supervisor::DeployRequest

pub struct DeployRequest {
    pub artifact: ArtifactId,
    pub spec: Vec<u8>,
    pub deadline_height: Height,
}

Request for the artifact deployment.

Fields

artifact: ArtifactId

Artifact identifier.

spec: Vec<u8>

Additional information for Runtime to deploy.

deadline_height: Height

The height until which the deployment procedure should be completed.

Trait Implementations

impl From<DeployRequest> for DeployConfirmation[src]

impl Clone for DeployRequest[src]

impl PartialEq<DeployRequest> for DeployRequest[src]

impl Debug for DeployRequest[src]

impl Display for DeployRequest

impl FromStr for DeployRequest

type Err = Error

The associated error which can be returned from parsing.

impl StructuralPartialEq for DeployRequest[src]

impl ProtobufConvert for DeployRequest[src]

type ProtoStruct = DeployRequest

Type of the protobuf clone of Self

impl BinaryValue for DeployRequest[src]

impl ObjectHash for DeployRequest[src]

impl<'de> Deserialize<'de> for DeployRequest

impl Serialize for DeployRequest

impl FromHex for DeployRequest

type Error = Error

impl ToHex for DeployRequest

impl ValidateInput for DeployRequest[src]

type Error = ExecutionError

The type returned in the event of a validate error.

impl BinaryKey for DeployRequest

impl Transaction<dyn SupervisorInterface + 'static> for DeployRequest[src]

Auto Trait Implementations

Blanket Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

impl<T> Erased for T

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