pub struct DatabaseCreateOrUpdateProperties {
pub collation: Option<String>,
pub max_size_bytes: Option<i64>,
}Expand description
The database’s create or update properties.
Azure API: sql.v1.DatabaseCreateOrUpdateProperties
Reference: https://learn.microsoft.com/en-us/rest/api/sql//DatabaseCreateOrUpdateProperties
Fields§
§collation: Option<String>The collation of the database
max_size_bytes: Option<i64>The max size of the database expressed in bytes
Trait Implementations§
Source§impl Clone for DatabaseCreateOrUpdateProperties
impl Clone for DatabaseCreateOrUpdateProperties
Source§fn clone(&self) -> DatabaseCreateOrUpdateProperties
fn clone(&self) -> DatabaseCreateOrUpdateProperties
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 Default for DatabaseCreateOrUpdateProperties
impl Default for DatabaseCreateOrUpdateProperties
Source§fn default() -> DatabaseCreateOrUpdateProperties
fn default() -> DatabaseCreateOrUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseCreateOrUpdateProperties
impl<'de> Deserialize<'de> for DatabaseCreateOrUpdateProperties
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 DatabaseCreateOrUpdateProperties
impl RefUnwindSafe for DatabaseCreateOrUpdateProperties
impl Send for DatabaseCreateOrUpdateProperties
impl Sync for DatabaseCreateOrUpdateProperties
impl Unpin for DatabaseCreateOrUpdateProperties
impl UnsafeUnpin for DatabaseCreateOrUpdateProperties
impl UnwindSafe for DatabaseCreateOrUpdateProperties
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