#[non_exhaustive]pub struct ExportPreviewResultResponse {
pub result: Option<PreviewResult>,
/* private fields */
}Expand description
A response to ExportPreviewResult call. Contains preview results.
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: Option<PreviewResult>Output only. Signed URLs for accessing the plan files.
Implementations§
Source§impl ExportPreviewResultResponse
impl ExportPreviewResultResponse
pub fn new() -> Self
Sourcepub fn set_result<T>(self, v: T) -> Selfwhere
T: Into<PreviewResult>,
pub fn set_result<T>(self, v: T) -> Selfwhere
T: Into<PreviewResult>,
Sourcepub fn set_or_clear_result<T>(self, v: Option<T>) -> Selfwhere
T: Into<PreviewResult>,
pub fn set_or_clear_result<T>(self, v: Option<T>) -> Selfwhere
T: Into<PreviewResult>,
Trait Implementations§
Source§impl Clone for ExportPreviewResultResponse
impl Clone for ExportPreviewResultResponse
Source§fn clone(&self) -> ExportPreviewResultResponse
fn clone(&self) -> ExportPreviewResultResponse
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 ExportPreviewResultResponse
impl Debug for ExportPreviewResultResponse
Source§impl Default for ExportPreviewResultResponse
impl Default for ExportPreviewResultResponse
Source§fn default() -> ExportPreviewResultResponse
fn default() -> ExportPreviewResultResponse
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ExportPreviewResultResponse
Auto Trait Implementations§
impl Freeze for ExportPreviewResultResponse
impl RefUnwindSafe for ExportPreviewResultResponse
impl Send for ExportPreviewResultResponse
impl Sync for ExportPreviewResultResponse
impl Unpin for ExportPreviewResultResponse
impl UnsafeUnpin for ExportPreviewResultResponse
impl UnwindSafe for ExportPreviewResultResponse
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