pub struct DeleteConfigurationTemplateMessage {
pub application_name: String,
pub template_name: String,
}
Expand description
Request to delete a configuration template.
Fields§
§application_name: String
The name of the application to delete the configuration template from.
template_name: String
The name of the configuration template to delete.
Trait Implementations§
Source§impl Clone for DeleteConfigurationTemplateMessage
impl Clone for DeleteConfigurationTemplateMessage
Source§fn clone(&self) -> DeleteConfigurationTemplateMessage
fn clone(&self) -> DeleteConfigurationTemplateMessage
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 Default for DeleteConfigurationTemplateMessage
impl Default for DeleteConfigurationTemplateMessage
Source§fn default() -> DeleteConfigurationTemplateMessage
fn default() -> DeleteConfigurationTemplateMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteConfigurationTemplateMessage
impl PartialEq for DeleteConfigurationTemplateMessage
Source§fn eq(&self, other: &DeleteConfigurationTemplateMessage) -> bool
fn eq(&self, other: &DeleteConfigurationTemplateMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteConfigurationTemplateMessage
Auto Trait Implementations§
impl Freeze for DeleteConfigurationTemplateMessage
impl RefUnwindSafe for DeleteConfigurationTemplateMessage
impl Send for DeleteConfigurationTemplateMessage
impl Sync for DeleteConfigurationTemplateMessage
impl Unpin for DeleteConfigurationTemplateMessage
impl UnwindSafe for DeleteConfigurationTemplateMessage
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