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