Struct rusoto_support::SeverityLevel[][src]

pub struct SeverityLevel {
    pub code: Option<String>,
    pub name: Option<String>,
}

A code and name pair that represent a severity level that can be applied to a support case.

Fields

One of four values: "low," "medium," "high," and "urgent". These values correspond to response times returned to the caller in severityLevel.name.

The name of the severity level that corresponds to the severity level code.

Trait Implementations

impl Default for SeverityLevel
[src]

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

impl Debug for SeverityLevel
[src]

Formats the value using the given formatter. Read more

impl Clone for SeverityLevel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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