pub struct UpdateTarget {
pub database_version: Option<String>,
pub maintenance_track_name: Option<String>,
pub supported_operations: Option<Vec<SupportedOperation>>,
}
Expand description
A maintenance track that you can switch the current track to.
Fields§
§database_version: Option<String>
The cluster version for the new maintenance track.
maintenance_track_name: Option<String>
The name of the new maintenance track.
supported_operations: Option<Vec<SupportedOperation>>
A list of operations supported by the maintenance track.
Trait Implementations§
Source§impl Clone for UpdateTarget
impl Clone for UpdateTarget
Source§fn clone(&self) -> UpdateTarget
fn clone(&self) -> UpdateTarget
Returns a duplicate 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 UpdateTarget
impl Debug for UpdateTarget
Source§impl Default for UpdateTarget
impl Default for UpdateTarget
Source§fn default() -> UpdateTarget
fn default() -> UpdateTarget
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateTarget
impl PartialEq for UpdateTarget
impl StructuralPartialEq for UpdateTarget
Auto Trait Implementations§
impl Freeze for UpdateTarget
impl RefUnwindSafe for UpdateTarget
impl Send for UpdateTarget
impl Sync for UpdateTarget
impl Unpin for UpdateTarget
impl UnwindSafe for UpdateTarget
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