Struct tile_grid::TitleDescriptionKeywords
source · pub struct TitleDescriptionKeywords {
pub title: Option<String>,
pub description: Option<String>,
pub keywords: Option<Vec<String>>,
}Fields§
§title: Option<String>Title of this resource entity, normally used for display to a human
description: Option<String>Brief narrative description of this resoource entity, normally available for display to a human
keywords: Option<Vec<String>>Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this resource entity
Trait Implementations§
source§impl Clone for TitleDescriptionKeywords
impl Clone for TitleDescriptionKeywords
source§fn clone(&self) -> TitleDescriptionKeywords
fn clone(&self) -> TitleDescriptionKeywords
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 TitleDescriptionKeywords
impl Debug for TitleDescriptionKeywords
source§impl<'de> Deserialize<'de> for TitleDescriptionKeywords
impl<'de> Deserialize<'de> for TitleDescriptionKeywords
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 RefUnwindSafe for TitleDescriptionKeywords
impl Send for TitleDescriptionKeywords
impl Sync for TitleDescriptionKeywords
impl Unpin for TitleDescriptionKeywords
impl UnwindSafe for TitleDescriptionKeywords
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