pub struct DatabaseProperties {
pub status: Option<String>,
pub database_id: Option<String>,
pub collation: Option<String>,
pub max_size_bytes: Option<i64>,
pub requested_service_objective_name: Option<String>,
pub current_service_objective_name: Option<String>,
pub default_secondary_location: Option<String>,
}Expand description
The database’s properties.
Azure API: sql.v1.DatabaseProperties
Reference: https://learn.microsoft.com/en-us/rest/api/sql//DatabaseProperties
Fields§
§status: Option<String>The status of the database
database_id: Option<String>The ID of the database
collation: Option<String>The collation of the database
max_size_bytes: Option<i64>The max size of the database expressed in bytes
requested_service_objective_name: Option<String>The name of the configured service level objective
current_service_objective_name: Option<String>The current service level objective name
default_secondary_location: Option<String>The default secondary region for this database
Trait Implementations§
Source§impl Clone for DatabaseProperties
impl Clone for DatabaseProperties
Source§fn clone(&self) -> DatabaseProperties
fn clone(&self) -> DatabaseProperties
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 DatabaseProperties
impl Debug for DatabaseProperties
Source§impl Default for DatabaseProperties
impl Default for DatabaseProperties
Source§fn default() -> DatabaseProperties
fn default() -> DatabaseProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseProperties
impl<'de> Deserialize<'de> for DatabaseProperties
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
Auto Trait Implementations§
impl Freeze for DatabaseProperties
impl RefUnwindSafe for DatabaseProperties
impl Send for DatabaseProperties
impl Sync for DatabaseProperties
impl Unpin for DatabaseProperties
impl UnsafeUnpin for DatabaseProperties
impl UnwindSafe for DatabaseProperties
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