Struct rusoto_iot::CodeSigningSignature[][src]

pub struct CodeSigningSignature {
    pub inline_document: Option<Vec<u8>>,
    pub stream: Option<Stream>,
}

Describes the signature for a file.

Fields

A base64 encoded binary representation of the code signing signature.

A stream of the code signing signature.

Trait Implementations

impl Default for CodeSigningSignature
[src]

Returns the "default value" for a type. Read more

impl Debug for CodeSigningSignature
[src]

Formats the value using the given formatter. Read more

impl Clone for CodeSigningSignature
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CodeSigningSignature
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations