#[non_exhaustive]pub struct GetFieldRequest {
pub name: String,
/* private fields */
}Expand description
The request for FirestoreAdmin.GetField.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. A name of the form
projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}
Implementations§
Trait Implementations§
Source§impl Clone for GetFieldRequest
impl Clone for GetFieldRequest
Source§fn clone(&self) -> GetFieldRequest
fn clone(&self) -> GetFieldRequest
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 GetFieldRequest
impl Debug for GetFieldRequest
Source§impl Default for GetFieldRequest
impl Default for GetFieldRequest
Source§fn default() -> GetFieldRequest
fn default() -> GetFieldRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetFieldRequest
impl Message for GetFieldRequest
Source§impl PartialEq for GetFieldRequest
impl PartialEq for GetFieldRequest
impl StructuralPartialEq for GetFieldRequest
Auto Trait Implementations§
impl Freeze for GetFieldRequest
impl RefUnwindSafe for GetFieldRequest
impl Send for GetFieldRequest
impl Sync for GetFieldRequest
impl Unpin for GetFieldRequest
impl UnwindSafe for GetFieldRequest
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