pub struct Database {
pub charset: Option<String>,
pub collation: Option<String>,
pub etag: Option<String>,
pub instance: Option<String>,
pub kind: Option<String>,
pub name: Option<String>,
pub project: Option<String>,
pub self_link: Option<String>,
pub sqlserver_database_details: Option<SqlServerDatabaseDetails>,
}
Expand description
Represents a SQL database on the Cloud SQL instance.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- delete databases (none)
- get databases (response)
- insert databases (request)
- list databases (none)
- patch databases (request)
- update databases (request)
Fields§
§charset: Option<String>
The MySQL charset value.
collation: Option<String>
The MySQL collation value.
etag: Option<String>
This field is deprecated and will be removed from a future version of the API.
instance: Option<String>
The name of the Cloud SQL instance. This does not include the project ID.
kind: Option<String>
This is always sql#database
.
name: Option<String>
The name of the database in the Cloud SQL instance. This does not include the project ID or instance name.
project: Option<String>
The project ID of the project containing the Cloud SQL database. The Google apps domain is prefixed if applicable.
self_link: Option<String>
The URI of this resource.
sqlserver_database_details: Option<SqlServerDatabaseDetails>
no description provided
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Database
impl<'de> Deserialize<'de> for Database
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>,
impl RequestValue for Database
impl Resource for Database
impl ResponseResult for Database
Auto Trait Implementations§
impl Freeze for Database
impl RefUnwindSafe for Database
impl Send for Database
impl Sync for Database
impl Unpin for Database
impl UnwindSafe for Database
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more