pub enum TextBulletChoice {
Character(TextBulletCharacter),
AutoNumber(TextAutoNumber),
None(TextNoBullet),
}Expand description
One member of the DrawingML paragraph bullet choice.
Variants§
Trait Implementations§
Source§impl Clone for TextBulletChoice
impl Clone for TextBulletChoice
Source§fn clone(&self) -> TextBulletChoice
fn clone(&self) -> TextBulletChoice
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 TextBulletChoice
impl Debug for TextBulletChoice
impl Eq for TextBulletChoice
Source§impl PartialEq for TextBulletChoice
impl PartialEq for TextBulletChoice
impl StructuralPartialEq for TextBulletChoice
Auto Trait Implementations§
impl Freeze for TextBulletChoice
impl RefUnwindSafe for TextBulletChoice
impl Send for TextBulletChoice
impl Sync for TextBulletChoice
impl Unpin for TextBulletChoice
impl UnsafeUnpin for TextBulletChoice
impl UnwindSafe for TextBulletChoice
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