pub struct TextBullet {
pub color: Option<TextBulletColor>,
pub size: Option<TextBulletSize>,
pub font: Option<TextFont>,
pub choice: Option<TextBulletChoice>,
}Expand description
The modelled colour, size, font, and mutually exclusive choice of one bullet.
Fields§
§color: Option<TextBulletColor>§size: Option<TextBulletSize>§font: Option<TextFont>§choice: Option<TextBulletChoice>Trait Implementations§
Source§impl Clone for TextBullet
impl Clone for TextBullet
Source§fn clone(&self) -> TextBullet
fn clone(&self) -> TextBullet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TextBullet
impl Debug for TextBullet
Source§impl Default for TextBullet
impl Default for TextBullet
Source§fn default() -> TextBullet
fn default() -> TextBullet
Returns the “default value” for a type. Read more
impl Eq for TextBullet
Source§impl PartialEq for TextBullet
impl PartialEq for TextBullet
impl StructuralPartialEq for TextBullet
Auto Trait Implementations§
impl Freeze for TextBullet
impl RefUnwindSafe for TextBullet
impl Send for TextBullet
impl Sync for TextBullet
impl Unpin for TextBullet
impl UnsafeUnpin for TextBullet
impl UnwindSafe for TextBullet
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