[][src]Struct exonum_middleware_service::CheckedCall

pub struct CheckedCall {
    pub artifact_name: String,
    pub artifact_version: VersionReq,
    pub inner: AnyTx,
}

Checked call to the service.

Fields

artifact_name: String

Expected name of the artifact.

artifact_version: VersionReq

Version requirement(s) on the artifact.

inner: AnyTx

The call contents.

Trait Implementations

impl BinaryValue for CheckedCall[src]

impl Clone for CheckedCall[src]

impl Debug for CheckedCall[src]

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

impl PartialEq<CheckedCall> for CheckedCall[src]

impl ProtobufConvert for CheckedCall[src]

type ProtoStruct = CheckedCall

Type of the protobuf clone of Self

impl Serialize for CheckedCall[src]

impl StructuralPartialEq for CheckedCall[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> Erased for T

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>,