pub struct GoogleFirestoreAdminV1ListDatabasesResponse {
pub databases: Option<Vec<GoogleFirestoreAdminV1Database>>,
pub unreachable: Option<Vec<String>>,
}
Expand description
The list of databases for a project.
§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).
- databases list projects (response)
Fields§
§databases: Option<Vec<GoogleFirestoreAdminV1Database>>
The databases in the project.
unreachable: Option<Vec<String>>
In the event that data about individual databases cannot be listed they will be recorded here. An example entry might be: projects/some_project/locations/some_location This can happen if the Cloud Region that the Database resides in is currently unavailable. In this case we can’t fetch all the details about the database. You may be able to get a more detailed error message (or possibly fetch the resource) by sending a ‘Get’ request for the resource or a ‘List’ request for the specific location.
Trait Implementations§
Source§impl Clone for GoogleFirestoreAdminV1ListDatabasesResponse
impl Clone for GoogleFirestoreAdminV1ListDatabasesResponse
Source§fn clone(&self) -> GoogleFirestoreAdminV1ListDatabasesResponse
fn clone(&self) -> GoogleFirestoreAdminV1ListDatabasesResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleFirestoreAdminV1ListDatabasesResponse
impl Default for GoogleFirestoreAdminV1ListDatabasesResponse
Source§fn default() -> GoogleFirestoreAdminV1ListDatabasesResponse
fn default() -> GoogleFirestoreAdminV1ListDatabasesResponse
Source§impl<'de> Deserialize<'de> for GoogleFirestoreAdminV1ListDatabasesResponse
impl<'de> Deserialize<'de> for GoogleFirestoreAdminV1ListDatabasesResponse
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 ResponseResult for GoogleFirestoreAdminV1ListDatabasesResponse
Auto Trait Implementations§
impl Freeze for GoogleFirestoreAdminV1ListDatabasesResponse
impl RefUnwindSafe for GoogleFirestoreAdminV1ListDatabasesResponse
impl Send for GoogleFirestoreAdminV1ListDatabasesResponse
impl Sync for GoogleFirestoreAdminV1ListDatabasesResponse
impl Unpin for GoogleFirestoreAdminV1ListDatabasesResponse
impl UnwindSafe for GoogleFirestoreAdminV1ListDatabasesResponse
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