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