pub struct CheckTemplateExistenceResult {
pub does_template_exist: Option<bool>,
pub existing_template_name: Option<String>,
pub existing_template_type_id: Option<String>,
pub requested_template_name: Option<String>,
}
Expand description
Describes result of a check template existence request.
Fields§
§does_template_exist: Option<bool>
Indicates whether a template exists.
existing_template_name: Option<String>
The name of the existing template.
existing_template_type_id: Option<String>
The existing template type identifier.
requested_template_name: Option<String>
The name of the requested template.
Implementations§
Trait Implementations§
source§impl Clone for CheckTemplateExistenceResult
impl Clone for CheckTemplateExistenceResult
source§fn clone(&self) -> CheckTemplateExistenceResult
fn clone(&self) -> CheckTemplateExistenceResult
Returns a copy 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 CheckTemplateExistenceResult
impl Debug for CheckTemplateExistenceResult
source§impl Default for CheckTemplateExistenceResult
impl Default for CheckTemplateExistenceResult
source§fn default() -> CheckTemplateExistenceResult
fn default() -> CheckTemplateExistenceResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CheckTemplateExistenceResult
impl<'de> Deserialize<'de> for CheckTemplateExistenceResult
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for CheckTemplateExistenceResult
impl PartialEq for CheckTemplateExistenceResult
source§fn eq(&self, other: &CheckTemplateExistenceResult) -> bool
fn eq(&self, other: &CheckTemplateExistenceResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CheckTemplateExistenceResult
Auto Trait Implementations§
impl RefUnwindSafe for CheckTemplateExistenceResult
impl Send for CheckTemplateExistenceResult
impl Sync for CheckTemplateExistenceResult
impl Unpin for CheckTemplateExistenceResult
impl UnwindSafe for CheckTemplateExistenceResult
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