pub struct ListFirebaseProjectsResponse {
pub next_page_token: Option<String>,
pub results: Option<Vec<FirebaseProject>>,
}Expand description
There is no detailed description.
§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).
- list projects (response)
Fields§
§next_page_token: Option<String>If the result list is too large to fit in a single response, then a token is returned. If the string is empty, then this response is the last page of results. This token can be used in a subsequent calls to ListFirebaseProjects to find the next group of Projects. Page tokens are short-lived and should not be persisted.
results: Option<Vec<FirebaseProject>>One page of the list of Projects that are accessible to the caller.
Trait Implementations§
Source§impl Clone for ListFirebaseProjectsResponse
impl Clone for ListFirebaseProjectsResponse
Source§fn clone(&self) -> ListFirebaseProjectsResponse
fn clone(&self) -> ListFirebaseProjectsResponse
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 ListFirebaseProjectsResponse
impl Debug for ListFirebaseProjectsResponse
Source§impl Default for ListFirebaseProjectsResponse
impl Default for ListFirebaseProjectsResponse
Source§fn default() -> ListFirebaseProjectsResponse
fn default() -> ListFirebaseProjectsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFirebaseProjectsResponse
impl<'de> Deserialize<'de> for ListFirebaseProjectsResponse
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
impl ResponseResult for ListFirebaseProjectsResponse
Auto Trait Implementations§
impl Freeze for ListFirebaseProjectsResponse
impl RefUnwindSafe for ListFirebaseProjectsResponse
impl Send for ListFirebaseProjectsResponse
impl Sync for ListFirebaseProjectsResponse
impl Unpin for ListFirebaseProjectsResponse
impl UnwindSafe for ListFirebaseProjectsResponse
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