pub struct ServerCreateOrUpdateProperties {
pub administrator_login: String,
pub administrator_login_password: Option<String>,
pub version: Option<String>,
}Expand description
The properties used to create a new server.
Azure API: sql.v1.ServerCreateOrUpdateProperties
Reference: https://learn.microsoft.com/en-us/rest/api/sql//ServerCreateOrUpdateProperties
Fields§
§administrator_login: StringAdministrator username for the server
administrator_login_password: Option<String>Administrator login password (required for create)
version: Option<String>The version of the server (e.g. 12.0)
Trait Implementations§
Source§impl Clone for ServerCreateOrUpdateProperties
impl Clone for ServerCreateOrUpdateProperties
Source§fn clone(&self) -> ServerCreateOrUpdateProperties
fn clone(&self) -> ServerCreateOrUpdateProperties
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 ServerCreateOrUpdateProperties
impl Default for ServerCreateOrUpdateProperties
Source§fn default() -> ServerCreateOrUpdateProperties
fn default() -> ServerCreateOrUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerCreateOrUpdateProperties
impl<'de> Deserialize<'de> for ServerCreateOrUpdateProperties
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 ServerCreateOrUpdateProperties
impl RefUnwindSafe for ServerCreateOrUpdateProperties
impl Send for ServerCreateOrUpdateProperties
impl Sync for ServerCreateOrUpdateProperties
impl Unpin for ServerCreateOrUpdateProperties
impl UnsafeUnpin for ServerCreateOrUpdateProperties
impl UnwindSafe for ServerCreateOrUpdateProperties
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