pub struct CheckUpdateResponse {
pub updates_available: Option<UpdatesAvailable>,
}Expand description
Information about updates available for system services in a cluster.
Fields§
§updates_available: Option<UpdatesAvailable>Yes if updates are available for the system services, No if not.
Implementations§
Trait Implementations§
Source§impl Clone for CheckUpdateResponse
impl Clone for CheckUpdateResponse
Source§fn clone(&self) -> CheckUpdateResponse
fn clone(&self) -> CheckUpdateResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CheckUpdateResponse
impl Debug for CheckUpdateResponse
Source§impl Default for CheckUpdateResponse
impl Default for CheckUpdateResponse
Source§fn default() -> CheckUpdateResponse
fn default() -> CheckUpdateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckUpdateResponse
impl<'de> Deserialize<'de> for CheckUpdateResponse
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 for CheckUpdateResponse
impl PartialEq for CheckUpdateResponse
Source§fn eq(&self, other: &CheckUpdateResponse) -> bool
fn eq(&self, other: &CheckUpdateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CheckUpdateResponse
impl Serialize for CheckUpdateResponse
impl StructuralPartialEq for CheckUpdateResponse
Auto Trait Implementations§
impl Freeze for CheckUpdateResponse
impl RefUnwindSafe for CheckUpdateResponse
impl Send for CheckUpdateResponse
impl Sync for CheckUpdateResponse
impl Unpin for CheckUpdateResponse
impl UnsafeUnpin for CheckUpdateResponse
impl UnwindSafe for CheckUpdateResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more