pub struct InstancePool {
pub tracked_resource: TrackedResource,
pub sku: Option<Sku>,
pub properties: Option<InstancePoolProperties>,
}Expand description
An Azure SQL instance pool.
Fields§
§tracked_resource: TrackedResource§sku: Option<Sku>An ARM Resource SKU.
properties: Option<InstancePoolProperties>Properties of an instance pool.
Implementations§
Source§impl InstancePool
impl InstancePool
pub fn new(tracked_resource: TrackedResource) -> Self
Trait Implementations§
Source§impl Clone for InstancePool
impl Clone for InstancePool
Source§fn clone(&self) -> InstancePool
fn clone(&self) -> InstancePool
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 InstancePool
impl Debug for InstancePool
Source§impl<'de> Deserialize<'de> for InstancePool
impl<'de> Deserialize<'de> for InstancePool
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 InstancePool
impl PartialEq for InstancePool
Source§impl Serialize for InstancePool
impl Serialize for InstancePool
impl StructuralPartialEq for InstancePool
Auto Trait Implementations§
impl Freeze for InstancePool
impl RefUnwindSafe for InstancePool
impl Send for InstancePool
impl Sync for InstancePool
impl Unpin for InstancePool
impl UnwindSafe for InstancePool
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