#[non_exhaustive]pub struct DeleteEntityTypeRequest {
pub name: String,
/* private fields */
}Available on crate feature
entity-types only.Expand description
The request message for EntityTypes.DeleteEntityType.
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 entity type to delete.
Format: projects/<Project ID>/agent/entityTypes/<EntityType ID>.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteEntityTypeRequest
impl Clone for DeleteEntityTypeRequest
Source§fn clone(&self) -> DeleteEntityTypeRequest
fn clone(&self) -> DeleteEntityTypeRequest
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 DeleteEntityTypeRequest
impl Debug for DeleteEntityTypeRequest
Source§impl Default for DeleteEntityTypeRequest
impl Default for DeleteEntityTypeRequest
Source§fn default() -> DeleteEntityTypeRequest
fn default() -> DeleteEntityTypeRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteEntityTypeRequest
impl Message for DeleteEntityTypeRequest
Source§impl PartialEq for DeleteEntityTypeRequest
impl PartialEq for DeleteEntityTypeRequest
impl StructuralPartialEq for DeleteEntityTypeRequest
Auto Trait Implementations§
impl Freeze for DeleteEntityTypeRequest
impl RefUnwindSafe for DeleteEntityTypeRequest
impl Send for DeleteEntityTypeRequest
impl Sync for DeleteEntityTypeRequest
impl Unpin for DeleteEntityTypeRequest
impl UnwindSafe for DeleteEntityTypeRequest
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