#[non_exhaustive]pub struct ExportDocumentsResponse {
pub output_uri_prefix: String,
/* private fields */
}Expand description
Returned in the google.longrunning.Operation response field.
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_uri_prefix: StringLocation of the output files. This can be used to begin an import into Cloud Firestore (this project or another project) after the operation completes successfully.
Implementations§
Source§impl ExportDocumentsResponse
impl ExportDocumentsResponse
pub fn new() -> Self
Sourcepub fn set_output_uri_prefix<T: Into<String>>(self, v: T) -> Self
pub fn set_output_uri_prefix<T: Into<String>>(self, v: T) -> Self
Sets the value of output_uri_prefix.
§Example
ⓘ
let x = ExportDocumentsResponse::new().set_output_uri_prefix("example");Trait Implementations§
Source§impl Clone for ExportDocumentsResponse
impl Clone for ExportDocumentsResponse
Source§fn clone(&self) -> ExportDocumentsResponse
fn clone(&self) -> ExportDocumentsResponse
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 ExportDocumentsResponse
impl Debug for ExportDocumentsResponse
Source§impl Default for ExportDocumentsResponse
impl Default for ExportDocumentsResponse
Source§fn default() -> ExportDocumentsResponse
fn default() -> ExportDocumentsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ExportDocumentsResponse
impl Message for ExportDocumentsResponse
Source§impl PartialEq for ExportDocumentsResponse
impl PartialEq for ExportDocumentsResponse
impl StructuralPartialEq for ExportDocumentsResponse
Auto Trait Implementations§
impl Freeze for ExportDocumentsResponse
impl RefUnwindSafe for ExportDocumentsResponse
impl Send for ExportDocumentsResponse
impl Sync for ExportDocumentsResponse
impl Unpin for ExportDocumentsResponse
impl UnwindSafe for ExportDocumentsResponse
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