#[repr(C)]pub struct lv_text_attributes_t {
pub letter_space: i32,
pub line_space: i32,
pub max_width: i32,
pub text_flags: lv_text_flag_t,
}Fields§
§letter_space: i32< Letter space between letters
line_space: i32< Space between lines of text
max_width: i32< Max width of the text (break the lines to fit this size). Set COORD_MAX to avoid
text_flags: lv_text_flag_tTrait Implementations§
Source§impl Clone for lv_text_attributes_t
impl Clone for lv_text_attributes_t
Source§fn clone(&self) -> lv_text_attributes_t
fn clone(&self) -> lv_text_attributes_t
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 lv_text_attributes_t
impl Debug for lv_text_attributes_t
impl Copy for lv_text_attributes_t
Auto Trait Implementations§
impl Freeze for lv_text_attributes_t
impl RefUnwindSafe for lv_text_attributes_t
impl Send for lv_text_attributes_t
impl Sync for lv_text_attributes_t
impl Unpin for lv_text_attributes_t
impl UnsafeUnpin for lv_text_attributes_t
impl UnwindSafe for lv_text_attributes_t
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