pub struct ServerProperties {
pub administrator_login: Option<String>,
pub fully_qualified_domain_name: Option<String>,
pub state: Option<String>,
pub version: Option<String>,
}Expand description
The properties of a server.
Azure API: sql.v1.ServerProperties
Reference: https://learn.microsoft.com/en-us/rest/api/sql//ServerProperties
Fields§
§administrator_login: Option<String>Administrator username for the server
fully_qualified_domain_name: Option<String>The fully qualified domain name of the server
state: Option<String>The state of the server (Ready, Disabled, etc.)
version: Option<String>The version of the server
Trait Implementations§
Source§impl Clone for ServerProperties
impl Clone for ServerProperties
Source§fn clone(&self) -> ServerProperties
fn clone(&self) -> ServerProperties
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 ServerProperties
impl Debug for ServerProperties
Source§impl Default for ServerProperties
impl Default for ServerProperties
Source§fn default() -> ServerProperties
fn default() -> ServerProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerProperties
impl<'de> Deserialize<'de> for ServerProperties
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 ServerProperties
impl RefUnwindSafe for ServerProperties
impl Send for ServerProperties
impl Sync for ServerProperties
impl Unpin for ServerProperties
impl UnsafeUnpin for ServerProperties
impl UnwindSafe for ServerProperties
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