pub struct TemplateItem {
pub name: String,
pub id: String,
}Expand description
Template item in list response.
Fields§
§name: StringTemplate name.
id: StringTemplate ID.
Trait Implementations§
Source§impl Clone for TemplateItem
impl Clone for TemplateItem
Source§fn clone(&self) -> TemplateItem
fn clone(&self) -> TemplateItem
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 TemplateItem
impl Debug for TemplateItem
Source§impl<'de> Deserialize<'de> for TemplateItem
impl<'de> Deserialize<'de> for TemplateItem
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
Auto Trait Implementations§
impl Freeze for TemplateItem
impl RefUnwindSafe for TemplateItem
impl Send for TemplateItem
impl Sync for TemplateItem
impl Unpin for TemplateItem
impl UnsafeUnpin for TemplateItem
impl UnwindSafe for TemplateItem
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