[][src]Struct em_client::models::ConversionResponse

pub struct ConversionResponse {
    pub new_image: Option<String>,
    pub image_sha: Option<String>,
    pub image_size: Option<isize>,
    pub isvprodid: Option<isize>,
    pub isvsvn: Option<isize>,
    pub mrenclave: Option<String>,
    pub mrsigner: Option<String>,
}

Fields

new_image: Option<String>

Registry and image name for the output container (same as outputImageName in the request)

image_sha: Option<String>

Shortened SHA256 Hash of the output image (This is the id of the image)

image_size: Option<isize>

The output image size in bytes

isvprodid: Option<isize>

This is the enclave productId which is same as the isvprodid in input request, if set. Default value is 0

isvsvn: Option<isize>

This is the enclave security version which is same as the isvsvn in input request, if set. Default value is 0

mrenclave: Option<String>

This is the measurement of the enclave which uniquely identifies the shielded application. This is in hex format.

mrsigner: Option<String>

This is the hash of the signing key which uniquely identifies the signing key. This is in hex format.

Implementations

impl ConversionResponse[src]

Trait Implementations

impl Clone for ConversionResponse[src]

impl Debug for ConversionResponse[src]

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

impl PartialEq<ConversionResponse> for ConversionResponse[src]

impl Serialize for ConversionResponse[src]

impl StructuralPartialEq for ConversionResponse[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: for<'de> 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<T> Typeable for T where
    T: Any