Struct k8s_openapi::ByteString[][src]

pub struct ByteString(pub Vec<u8>);

A wrapper around a list of bytes.

Used in Kubernetes types whose JSON representation uses a base64-encoded string for a list of bytes.

Trait Implementations

impl Clone for ByteString
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ByteString
[src]

Formats the value using the given formatter. Read more

impl Default for ByteString
[src]

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

impl Eq for ByteString
[src]

impl PartialEq for ByteString
[src]

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

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ByteString
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl Send for ByteString

impl Sync for ByteString