pub struct SetTextFormatDto {Show 14 fields
pub position: i64,
pub anchor: i64,
pub font_family: Option<String>,
pub font_point_size: Option<i64>,
pub font_weight: Option<i64>,
pub font_bold: Option<bool>,
pub font_italic: Option<bool>,
pub font_underline: Option<bool>,
pub font_overline: Option<bool>,
pub font_strikeout: Option<bool>,
pub letter_spacing: Option<i64>,
pub word_spacing: Option<i64>,
pub underline_style: Option<UnderlineStyle>,
pub vertical_alignment: Option<CharVerticalAlignment>,
}Fields§
§position: i64§anchor: i64§font_family: Option<String>§font_point_size: Option<i64>§font_weight: Option<i64>§font_bold: Option<bool>§font_italic: Option<bool>§font_underline: Option<bool>§font_overline: Option<bool>§font_strikeout: Option<bool>§letter_spacing: Option<i64>§word_spacing: Option<i64>§underline_style: Option<UnderlineStyle>§vertical_alignment: Option<CharVerticalAlignment>Trait Implementations§
Source§impl Clone for SetTextFormatDto
impl Clone for SetTextFormatDto
Source§fn clone(&self) -> SetTextFormatDto
fn clone(&self) -> SetTextFormatDto
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 SetTextFormatDto
impl Debug for SetTextFormatDto
Source§impl Default for SetTextFormatDto
impl Default for SetTextFormatDto
Source§fn default() -> SetTextFormatDto
fn default() -> SetTextFormatDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetTextFormatDto
impl<'de> Deserialize<'de> for SetTextFormatDto
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 SetTextFormatDto
impl PartialEq for SetTextFormatDto
Source§impl Serialize for SetTextFormatDto
impl Serialize for SetTextFormatDto
impl StructuralPartialEq for SetTextFormatDto
Auto Trait Implementations§
impl Freeze for SetTextFormatDto
impl RefUnwindSafe for SetTextFormatDto
impl Send for SetTextFormatDto
impl Sync for SetTextFormatDto
impl Unpin for SetTextFormatDto
impl UnsafeUnpin for SetTextFormatDto
impl UnwindSafe for SetTextFormatDto
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