#[non_exhaustive]pub struct GetCdnKeyRequest {
pub name: String,
/* private fields */
}Expand description
Request message for VideoStitcherService.getCdnKey.
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.name: StringRequired. The name of the CDN key to be retrieved, in the form of
projects/{project}/locations/{location}/cdnKeys/{id}.
Implementations§
Trait Implementations§
Source§impl Clone for GetCdnKeyRequest
impl Clone for GetCdnKeyRequest
Source§fn clone(&self) -> GetCdnKeyRequest
fn clone(&self) -> GetCdnKeyRequest
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 GetCdnKeyRequest
impl Debug for GetCdnKeyRequest
Source§impl Default for GetCdnKeyRequest
impl Default for GetCdnKeyRequest
Source§fn default() -> GetCdnKeyRequest
fn default() -> GetCdnKeyRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetCdnKeyRequest
impl Message for GetCdnKeyRequest
Source§impl PartialEq for GetCdnKeyRequest
impl PartialEq for GetCdnKeyRequest
Source§fn eq(&self, other: &GetCdnKeyRequest) -> bool
fn eq(&self, other: &GetCdnKeyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetCdnKeyRequest
Auto Trait Implementations§
impl Freeze for GetCdnKeyRequest
impl RefUnwindSafe for GetCdnKeyRequest
impl Send for GetCdnKeyRequest
impl Sync for GetCdnKeyRequest
impl Unpin for GetCdnKeyRequest
impl UnsafeUnpin for GetCdnKeyRequest
impl UnwindSafe for GetCdnKeyRequest
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