#[non_exhaustive]pub struct DeleteSinkRequest {
pub sink_name: String,
/* private fields */
}Expand description
The parameters to DeleteSink.
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.sink_name: StringRequired. The full resource name of the sink to delete, including the parent resource and the sink identifier:
"projects/[PROJECT_ID]/sinks/[SINK_ID]"
"organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]"
"folders/[FOLDER_ID]/sinks/[SINK_ID]"For example:
"projects/my-project/sinks/my-sink"
Implementations§
Trait Implementations§
Source§impl Clone for DeleteSinkRequest
impl Clone for DeleteSinkRequest
Source§fn clone(&self) -> DeleteSinkRequest
fn clone(&self) -> DeleteSinkRequest
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 DeleteSinkRequest
impl Debug for DeleteSinkRequest
Source§impl Default for DeleteSinkRequest
impl Default for DeleteSinkRequest
Source§fn default() -> DeleteSinkRequest
fn default() -> DeleteSinkRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteSinkRequest
impl Message for DeleteSinkRequest
Source§impl PartialEq for DeleteSinkRequest
impl PartialEq for DeleteSinkRequest
impl StructuralPartialEq for DeleteSinkRequest
Auto Trait Implementations§
impl Freeze for DeleteSinkRequest
impl RefUnwindSafe for DeleteSinkRequest
impl Send for DeleteSinkRequest
impl Sync for DeleteSinkRequest
impl Unpin for DeleteSinkRequest
impl UnwindSafe for DeleteSinkRequest
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