pub struct EditorialNotes {
pub name: Option<String>,
pub short: Option<String>,
pub standard: Option<String>,
pub tagline: Option<String>,
}
Expand description
Editorial notes
Fields§
§name: Option<String>
Name for the editorial notes
short: Option<String>
Abbreviated notes that display inline or when the content appears alongside other content
standard: Option<String>
Notes that appear when the content displays prominently
tagline: Option<String>
Tag line for the editorial notes
Trait Implementations§
Source§impl Clone for EditorialNotes
impl Clone for EditorialNotes
Source§fn clone(&self) -> EditorialNotes
fn clone(&self) -> EditorialNotes
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 Debug for EditorialNotes
impl Debug for EditorialNotes
Source§impl Default for EditorialNotes
impl Default for EditorialNotes
Source§fn default() -> EditorialNotes
fn default() -> EditorialNotes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EditorialNoteswhere
EditorialNotes: Default,
impl<'de> Deserialize<'de> for EditorialNoteswhere
EditorialNotes: Default,
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 Hash for EditorialNotes
impl Hash for EditorialNotes
Source§impl PartialEq for EditorialNotes
impl PartialEq for EditorialNotes
Source§impl Serialize for EditorialNotes
impl Serialize for EditorialNotes
impl Eq for EditorialNotes
impl StructuralPartialEq for EditorialNotes
Auto Trait Implementations§
impl Freeze for EditorialNotes
impl RefUnwindSafe for EditorialNotes
impl Send for EditorialNotes
impl Sync for EditorialNotes
impl Unpin for EditorialNotes
impl UnwindSafe for EditorialNotes
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