Struct k8s_openapi::api::storage::v1::VolumeError
source · pub struct VolumeError {
pub message: Option<String>,
pub time: Option<Time>,
}
Expand description
VolumeError captures an error encountered during a volume operation.
Fields§
§message: Option<String>
String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.
time: Option<Time>
Time the error was encountered.
Trait Implementations§
source§impl Clone for VolumeError
impl Clone for VolumeError
source§fn clone(&self) -> VolumeError
fn clone(&self) -> VolumeError
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 VolumeError
impl Debug for VolumeError
source§impl DeepMerge for VolumeError
impl DeepMerge for VolumeError
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for VolumeError
impl Default for VolumeError
source§fn default() -> VolumeError
fn default() -> VolumeError
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VolumeError
impl<'de> Deserialize<'de> for VolumeError
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 PartialEq<VolumeError> for VolumeError
impl PartialEq<VolumeError> for VolumeError
source§fn eq(&self, other: &VolumeError) -> bool
fn eq(&self, other: &VolumeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.