Struct rusoto_ec2::IcmpTypeCode[][src]

pub struct IcmpTypeCode {
    pub code: Option<i64>,
    pub type_: Option<i64>,
}

Describes the ICMP type and code.

Fields

The ICMP code. A value of -1 means all codes for the specified ICMP type.

The ICMP type. A value of -1 means all types.

Trait Implementations

impl Default for IcmpTypeCode
[src]

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

impl Debug for IcmpTypeCode
[src]

Formats the value using the given formatter. Read more

impl Clone for IcmpTypeCode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IcmpTypeCode
[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