#[non_exhaustive]pub struct QueryMetadataResponse {
pub result_manifest_uri: String,
/* private fields */
}Expand description
Response message for DataprocMetastore.QueryMetadata.
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.result_manifest_uri: StringThe manifest URI is link to a JSON instance in Cloud Storage. This instance manifests immediately along with QueryMetadataResponse. The content of the URI is not retriable until the long-running operation query against the metadata finishes.
Implementations§
Source§impl QueryMetadataResponse
impl QueryMetadataResponse
Sourcepub fn set_result_manifest_uri<T: Into<String>>(self, v: T) -> Self
pub fn set_result_manifest_uri<T: Into<String>>(self, v: T) -> Self
Sets the value of result_manifest_uri.
§Example
ⓘ
let x = QueryMetadataResponse::new().set_result_manifest_uri("example");Trait Implementations§
Source§impl Clone for QueryMetadataResponse
impl Clone for QueryMetadataResponse
Source§fn clone(&self) -> QueryMetadataResponse
fn clone(&self) -> QueryMetadataResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryMetadataResponse
impl Debug for QueryMetadataResponse
Source§impl Default for QueryMetadataResponse
impl Default for QueryMetadataResponse
Source§fn default() -> QueryMetadataResponse
fn default() -> QueryMetadataResponse
Returns the “default value” for a type. Read more
Source§impl Message for QueryMetadataResponse
impl Message for QueryMetadataResponse
Source§impl PartialEq for QueryMetadataResponse
impl PartialEq for QueryMetadataResponse
Source§fn eq(&self, other: &QueryMetadataResponse) -> bool
fn eq(&self, other: &QueryMetadataResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryMetadataResponse
Auto Trait Implementations§
impl Freeze for QueryMetadataResponse
impl RefUnwindSafe for QueryMetadataResponse
impl Send for QueryMetadataResponse
impl Sync for QueryMetadataResponse
impl Unpin for QueryMetadataResponse
impl UnsafeUnpin for QueryMetadataResponse
impl UnwindSafe for QueryMetadataResponse
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