#[non_exhaustive]
pub enum CloudWatchLogsEncoding {
Show 93 variants Ascii, Big5, Big5hkscs, Cp037, Cp1006, Cp1026, Cp1140, Cp1250, Cp1251, Cp1252, Cp1253, Cp1254, Cp1255, Cp1256, Cp1257, Cp1258, Cp424, Cp437, Cp500, Cp720, Cp737, Cp775, Cp850, Cp852, Cp855, Cp856, Cp857, Cp858, Cp860, Cp861, Cp862, Cp863, Cp864, Cp865, Cp866, Cp869, Cp874, Cp875, Cp932, Cp949, Cp950, EucJis2004, EucJisx0213, EucJp, EucKr, Gb18030, Gb2312, Gbk, Hz, Iso2022Jp, Iso2022Jp1, Iso2022Jp2, Iso2022Jp2004, Iso2022Jp3, Iso2022JpExt, Iso2022Kr, Iso885910, Iso885913, Iso885914, Iso885915, Iso885916, Iso88592, Iso88593, Iso88594, Iso88595, Iso88596, Iso88597, Iso88598, Iso88599, Johab, Koi8R, Koi8U, Latin1, MacCyrillic, MacGreek, MacIceland, MacLatin2, MacRoman, MacTurkish, Ptcp154, ShiftJis, ShiftJis2004, ShiftJisx0213, Utf16, Utf16Be, Utf16Le, Utf32, Utf32Be, Utf32Le, Utf7, Utf8, Utf8Sig, Unknown(String),
}
Expand description

Specifies the encoding of the log file so that the file can be read correctly. The default is utf_8. Encodings supported by Python codecs.decode() can be used here.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Ascii

Big5

Big5hkscs

Cp037

Cp1006

Cp1026

Cp1140

Cp1250

Cp1251

Cp1252

Cp1253

Cp1254

Cp1255

Cp1256

Cp1257

Cp1258

Cp424

Cp437

Cp500

Cp720

Cp737

Cp775

Cp850

Cp852

Cp855

Cp856

Cp857

Cp858

Cp860

Cp861

Cp862

Cp863

Cp864

Cp865

Cp866

Cp869

Cp874

Cp875

Cp932

Cp949

Cp950

EucJis2004

EucJisx0213

EucJp

EucKr

Gb18030

Gb2312

Gbk

Hz

Iso2022Jp

Iso2022Jp1

Iso2022Jp2

Iso2022Jp2004

Iso2022Jp3

Iso2022JpExt

Iso2022Kr

Iso885910

Iso885913

Iso885914

Iso885915

Iso885916

Iso88592

Iso88593

Iso88594

Iso88595

Iso88596

Iso88597

Iso88598

Iso88599

Johab

Koi8R

Koi8U

Latin1

MacCyrillic

MacGreek

MacIceland

MacLatin2

MacRoman

MacTurkish

Ptcp154

ShiftJis

ShiftJis2004

ShiftJisx0213

Utf16

Utf16Be

Utf16Le

Utf32

Utf32Be

Utf32Le

Utf7

Utf8

Utf8Sig

Unknown(String)

Unknown contains new variants that have been added since this code was generated.

Implementations

Returns the &str value of the enum member.

Returns all the &str values of the enum members.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

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

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more