Skip to content

Commit

Permalink
Derive PartialEq for DynamicObject (#1048)
Browse files Browse the repository at this point in the history
Signed-off-by: pbzweihander <pbzweihander@gmail.com>

Signed-off-by: pbzweihander <pbzweihander@gmail.com>
  • Loading branch information
pbzweihander committed Oct 12, 2022
1 parent 82f1cda commit b92dc5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kube-core/src/dynamic.rs
Expand Up @@ -13,7 +13,7 @@ use std::borrow::Cow;
/// A dynamic representation of a kubernetes object
///
/// This will work with any non-list type object.
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug, PartialEq)]
pub struct DynamicObject {
/// The type fields, not always present
#[serde(flatten, default)]
Expand Down

0 comments on commit b92dc5b

Please sign in to comment.