pub struct ClassificationTemplate {
pub id: String,
pub type: MetadataTemplateType,
pub scope: String,
pub template_key: ClassificationTemplate2,
pub display_name: ClassificationTemplateDisplayName,
pub hidden: Option<bool>,
pub copy_instance_on_item_copy: Option<bool>,
pub fields: Vec<ClassificationTemplateFields>,
}Fields§
§id: String§type: MetadataTemplateType§scope: String§template_key: ClassificationTemplate2§display_name: ClassificationTemplateDisplayName§copy_instance_on_item_copy: Option<bool>§fields: Vec<ClassificationTemplateFields>Trait Implementations§
Source§impl Clone for ClassificationTemplate
impl Clone for ClassificationTemplate
Source§fn clone(&self) -> ClassificationTemplate
fn clone(&self) -> ClassificationTemplate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClassificationTemplate
impl Debug for ClassificationTemplate
Source§impl Default for ClassificationTemplate
impl Default for ClassificationTemplate
Source§fn default() -> ClassificationTemplate
fn default() -> ClassificationTemplate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClassificationTemplate
impl<'de> Deserialize<'de> for ClassificationTemplate
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 ClassificationTemplate
impl PartialEq for ClassificationTemplate
Source§impl Serialize for ClassificationTemplate
impl Serialize for ClassificationTemplate
impl StructuralPartialEq for ClassificationTemplate
Auto Trait Implementations§
impl Freeze for ClassificationTemplate
impl RefUnwindSafe for ClassificationTemplate
impl Send for ClassificationTemplate
impl Sync for ClassificationTemplate
impl Unpin for ClassificationTemplate
impl UnsafeUnpin for ClassificationTemplate
impl UnwindSafe for ClassificationTemplate
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