pub struct PoolUpdate {
pub tracked_resource_update: TrackedResourceUpdate,
pub properties: Option<PoolUpdateProperties>,
}Expand description
The pool properties for partial update. Properties not provided in the update request will not be changed.
Fields§
§tracked_resource_update: TrackedResourceUpdate§properties: Option<PoolUpdateProperties>Properties of a Pool. These properties can be updated after the resource has been created.
Implementations§
Source§impl PoolUpdate
impl PoolUpdate
Trait Implementations§
Source§impl Clone for PoolUpdate
impl Clone for PoolUpdate
Source§fn clone(&self) -> PoolUpdate
fn clone(&self) -> PoolUpdate
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 PoolUpdate
impl Debug for PoolUpdate
Source§impl Default for PoolUpdate
impl Default for PoolUpdate
Source§fn default() -> PoolUpdate
fn default() -> PoolUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PoolUpdate
impl<'de> Deserialize<'de> for PoolUpdate
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 PoolUpdate
impl PartialEq for PoolUpdate
Source§impl Serialize for PoolUpdate
impl Serialize for PoolUpdate
impl StructuralPartialEq for PoolUpdate
Auto Trait Implementations§
impl Freeze for PoolUpdate
impl RefUnwindSafe for PoolUpdate
impl Send for PoolUpdate
impl Sync for PoolUpdate
impl Unpin for PoolUpdate
impl UnwindSafe for PoolUpdate
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