#[non_exhaustive]pub struct GenerateDownloadUrlResponse {
pub download_url: String,
/* private fields */
}
Expand description
Response of GenerateDownloadUrl
method.
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.download_url: String
The generated Google Cloud Storage signed URL that should be used for function source code download.
Implementations§
Source§impl GenerateDownloadUrlResponse
impl GenerateDownloadUrlResponse
pub fn new() -> Self
Sourcepub fn set_download_url<T: Into<String>>(self, v: T) -> Self
pub fn set_download_url<T: Into<String>>(self, v: T) -> Self
Sets the value of download_url.
Trait Implementations§
Source§impl Clone for GenerateDownloadUrlResponse
impl Clone for GenerateDownloadUrlResponse
Source§fn clone(&self) -> GenerateDownloadUrlResponse
fn clone(&self) -> GenerateDownloadUrlResponse
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 GenerateDownloadUrlResponse
impl Debug for GenerateDownloadUrlResponse
Source§impl Default for GenerateDownloadUrlResponse
impl Default for GenerateDownloadUrlResponse
Source§fn default() -> GenerateDownloadUrlResponse
fn default() -> GenerateDownloadUrlResponse
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GenerateDownloadUrlResponse
Auto Trait Implementations§
impl Freeze for GenerateDownloadUrlResponse
impl RefUnwindSafe for GenerateDownloadUrlResponse
impl Send for GenerateDownloadUrlResponse
impl Sync for GenerateDownloadUrlResponse
impl Unpin for GenerateDownloadUrlResponse
impl UnwindSafe for GenerateDownloadUrlResponse
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