#[non_exhaustive]pub struct DeleteEntryTypeRequest {
pub name: String,
pub etag: String,
/* private fields */
}Expand description
Delete EntryType Request.
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 resource name of the EntryType:
projects/{project_number}/locations/{location_id}/entryTypes/{entry_type_id}.
etag: StringOptional. If the client provided etag value does not match the current etag value, the DeleteEntryTypeRequest method returns an ABORTED error response.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteEntryTypeRequest
impl Clone for DeleteEntryTypeRequest
Source§fn clone(&self) -> DeleteEntryTypeRequest
fn clone(&self) -> DeleteEntryTypeRequest
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 DeleteEntryTypeRequest
impl Debug for DeleteEntryTypeRequest
Source§impl Default for DeleteEntryTypeRequest
impl Default for DeleteEntryTypeRequest
Source§fn default() -> DeleteEntryTypeRequest
fn default() -> DeleteEntryTypeRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteEntryTypeRequest
impl Message for DeleteEntryTypeRequest
Source§impl PartialEq for DeleteEntryTypeRequest
impl PartialEq for DeleteEntryTypeRequest
impl StructuralPartialEq for DeleteEntryTypeRequest
Auto Trait Implementations§
impl Freeze for DeleteEntryTypeRequest
impl RefUnwindSafe for DeleteEntryTypeRequest
impl Send for DeleteEntryTypeRequest
impl Sync for DeleteEntryTypeRequest
impl Unpin for DeleteEntryTypeRequest
impl UnwindSafe for DeleteEntryTypeRequest
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