pub struct Server {
pub id: Option<String>,
pub name: Option<String>,
pub type: Option<String>,
pub location: Option<String>,
pub tags: HashMap<String, String>,
pub properties: Option<ServerProperties>,
}Expand description
An Azure SQL Database server.
Azure API: sql.v1.Server
Reference: https://learn.microsoft.com/en-us/rest/api/sql//Server
Fields§
§id: Option<String>Fully qualified resource ID
name: Option<String>The name of the resource
type: Option<String>The type of the resource
location: Option<String>Resource location
Resource tags
properties: Option<ServerProperties>Server resource properties
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Server
impl<'de> Deserialize<'de> for Server
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 Server
impl RefUnwindSafe for Server
impl Send for Server
impl Sync for Server
impl Unpin for Server
impl UnsafeUnpin for Server
impl UnwindSafe for Server
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