pub enum BulletSize {
FollowText,
Percent(i32),
Points(i32),
}Expand description
This paragraph’s bullet size (EG_TextBulletSize).
Variants§
FollowText
<a:buSzTx/> — follows the text run’s own size.
Percent(i32)
<a:buSzPct val=".."> — a percentage of the text’s own size, in thousandths of a percent
(100000 = 100%).
Points(i32)
<a:buSzPts val=".."> — an absolute size in hundredths of a point.
Trait Implementations§
Source§impl Clone for BulletSize
impl Clone for BulletSize
Source§fn clone(&self) -> BulletSize
fn clone(&self) -> BulletSize
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 moreimpl Copy for BulletSize
Source§impl Debug for BulletSize
impl Debug for BulletSize
Source§impl PartialEq for BulletSize
impl PartialEq for BulletSize
impl StructuralPartialEq for BulletSize
Auto Trait Implementations§
impl Freeze for BulletSize
impl RefUnwindSafe for BulletSize
impl Send for BulletSize
impl Sync for BulletSize
impl Unpin for BulletSize
impl UnsafeUnpin for BulletSize
impl UnwindSafe for BulletSize
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