Struct azure_devops_rust_api::release::models::SummaryMailSection
source · pub struct SummaryMailSection {
pub html_content: Option<String>,
pub rank: Option<i32>,
pub section_type: Option<SectionType>,
pub title: Option<String>,
}
Expand description
Fields§
§html_content: Option<String>
Html content of summary mail.
rank: Option<i32>
Rank of the summary mail.
section_type: Option<SectionType>
Summary mail section type. MailSectionType has section types.
title: Option<String>
Title of the summary mail.
Implementations§
Trait Implementations§
source§impl Clone for SummaryMailSection
impl Clone for SummaryMailSection
source§fn clone(&self) -> SummaryMailSection
fn clone(&self) -> SummaryMailSection
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 SummaryMailSection
impl Debug for SummaryMailSection
source§impl Default for SummaryMailSection
impl Default for SummaryMailSection
source§fn default() -> SummaryMailSection
fn default() -> SummaryMailSection
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SummaryMailSection
impl<'de> Deserialize<'de> for SummaryMailSection
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 SummaryMailSection
impl PartialEq for SummaryMailSection
source§fn eq(&self, other: &SummaryMailSection) -> bool
fn eq(&self, other: &SummaryMailSection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SummaryMailSection
impl Serialize for SummaryMailSection
impl StructuralPartialEq for SummaryMailSection
Auto Trait Implementations§
impl Freeze for SummaryMailSection
impl RefUnwindSafe for SummaryMailSection
impl Send for SummaryMailSection
impl Sync for SummaryMailSection
impl Unpin for SummaryMailSection
impl UnwindSafe for SummaryMailSection
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