Struct k8s_openapi::ByteString
source · pub struct ByteString(pub Vec<u8>);
Expand description
A wrapper around a list of bytes.
Used in Kubernetes types whose JSON representation uses a base64-encoded string for a list of bytes.
Tuple Fields§
§0: Vec<u8>
Trait Implementations§
source§impl Clone for ByteString
impl Clone for ByteString
source§fn clone(&self) -> ByteString
fn clone(&self) -> ByteString
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ByteString
impl Debug for ByteString
source§impl DeepMerge for ByteString
impl DeepMerge for ByteString
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ByteString
impl Default for ByteString
source§fn default() -> ByteString
fn default() -> ByteString
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ByteString
impl<'de> Deserialize<'de> for ByteString
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for ByteString
impl Ord for ByteString
source§fn cmp(&self, other: &ByteString) -> Ordering
fn cmp(&self, other: &ByteString) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ByteString> for ByteString
impl PartialEq<ByteString> for ByteString
source§fn eq(&self, other: &ByteString) -> bool
fn eq(&self, other: &ByteString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ByteString> for ByteString
impl PartialOrd<ByteString> for ByteString
source§fn partial_cmp(&self, other: &ByteString) -> Option<Ordering>
fn partial_cmp(&self, other: &ByteString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more