pub struct InlineElementDto {Show 20 fields
pub id: u64,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub content: InlineContent,
pub fmt_font_family: Option<String>,
pub fmt_font_point_size: Option<i64>,
pub fmt_font_weight: Option<i64>,
pub fmt_font_bold: Option<bool>,
pub fmt_font_italic: Option<bool>,
pub fmt_font_underline: Option<bool>,
pub fmt_font_overline: Option<bool>,
pub fmt_font_strikeout: Option<bool>,
pub fmt_letter_spacing: Option<i64>,
pub fmt_word_spacing: Option<i64>,
pub fmt_anchor_href: Option<String>,
pub fmt_anchor_names: Vec<String>,
pub fmt_is_anchor: Option<bool>,
pub fmt_tooltip: Option<String>,
pub fmt_underline_style: Option<UnderlineStyle>,
pub fmt_vertical_alignment: Option<CharVerticalAlignment>,
}Fields§
§id: u64§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§content: InlineContent§fmt_font_family: Option<String>§fmt_font_point_size: Option<i64>§fmt_font_weight: Option<i64>§fmt_font_bold: Option<bool>§fmt_font_italic: Option<bool>§fmt_font_underline: Option<bool>§fmt_font_overline: Option<bool>§fmt_font_strikeout: Option<bool>§fmt_letter_spacing: Option<i64>§fmt_word_spacing: Option<i64>§fmt_anchor_href: Option<String>§fmt_anchor_names: Vec<String>§fmt_is_anchor: Option<bool>§fmt_tooltip: Option<String>§fmt_underline_style: Option<UnderlineStyle>§fmt_vertical_alignment: Option<CharVerticalAlignment>Trait Implementations§
Source§impl Clone for InlineElementDto
impl Clone for InlineElementDto
Source§fn clone(&self) -> InlineElementDto
fn clone(&self) -> InlineElementDto
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 InlineElementDto
impl Debug for InlineElementDto
Source§impl Default for InlineElementDto
impl Default for InlineElementDto
Source§fn default() -> InlineElementDto
fn default() -> InlineElementDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InlineElementDto
impl<'de> Deserialize<'de> for InlineElementDto
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InlineElementDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InlineElementDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<InlineElement> for InlineElementDto
impl From<InlineElement> for InlineElementDto
Source§fn from(entity: InlineElement) -> InlineElementDto
fn from(entity: InlineElement) -> InlineElementDto
Converts to this type from the input type.
Source§impl From<InlineElementDto> for UpdateInlineElementDto
impl From<InlineElementDto> for UpdateInlineElementDto
Source§fn from(dto: InlineElementDto) -> UpdateInlineElementDto
fn from(dto: InlineElementDto) -> UpdateInlineElementDto
Converts to this type from the input type.
Source§impl PartialEq for InlineElementDto
impl PartialEq for InlineElementDto
Source§impl Serialize for InlineElementDto
impl Serialize for InlineElementDto
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for InlineElementDto
Auto Trait Implementations§
impl Freeze for InlineElementDto
impl RefUnwindSafe for InlineElementDto
impl Send for InlineElementDto
impl Sync for InlineElementDto
impl Unpin for InlineElementDto
impl UnsafeUnpin for InlineElementDto
impl UnwindSafe for InlineElementDto
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