#[non_exhaustive]pub struct ExportEntitiesResponse {
pub output_url: String,
/* private fields */
}Expand description
The response for google.datastore.admin.v1.DatastoreAdmin.ExportEntities.
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.output_url: StringLocation of the output metadata file. This can be used to begin an import into Cloud Datastore (this project or another project). See google.datastore.admin.v1.ImportEntitiesRequest.input_url. Only present if the operation completed successfully.
Implementations§
Source§impl ExportEntitiesResponse
impl ExportEntitiesResponse
pub fn new() -> Self
Sourcepub fn set_output_url<T: Into<String>>(self, v: T) -> Self
pub fn set_output_url<T: Into<String>>(self, v: T) -> Self
Sets the value of output_url.
Trait Implementations§
Source§impl Clone for ExportEntitiesResponse
impl Clone for ExportEntitiesResponse
Source§fn clone(&self) -> ExportEntitiesResponse
fn clone(&self) -> ExportEntitiesResponse
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 ExportEntitiesResponse
impl Debug for ExportEntitiesResponse
Source§impl Default for ExportEntitiesResponse
impl Default for ExportEntitiesResponse
Source§fn default() -> ExportEntitiesResponse
fn default() -> ExportEntitiesResponse
Returns the “default value” for a type. Read more
Source§impl Message for ExportEntitiesResponse
impl Message for ExportEntitiesResponse
Source§impl PartialEq for ExportEntitiesResponse
impl PartialEq for ExportEntitiesResponse
impl StructuralPartialEq for ExportEntitiesResponse
Auto Trait Implementations§
impl Freeze for ExportEntitiesResponse
impl RefUnwindSafe for ExportEntitiesResponse
impl Send for ExportEntitiesResponse
impl Sync for ExportEntitiesResponse
impl Unpin for ExportEntitiesResponse
impl UnwindSafe for ExportEntitiesResponse
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