pub enum ShapeKind {
TextBox(TextBox),
AutoShape(AutoShape),
Picture(Picture),
Group(Group),
Connector(Connector),
Table(TableShape),
Chart(ChartShape),
OleObject(OleObjectShape),
SmartArt(SmartArtShape),
Placeholder(PlaceholderShape),
}Expand description
Variants§
TextBox(TextBox)
文本框。
AutoShape(AutoShape)
自选图形(矩形、椭圆、箭头、…)。
Picture(Picture)
图片。
Group(Group)
组合。
Connector(Connector)
连接器。
Table(TableShape)
表格。
Chart(ChartShape)
图表(TODO-004)。
OleObject(OleObjectShape)
OLE 对象(TODO-043)。
SmartArt(SmartArtShape)
SmartArt 图形(TODO-037 创建 API)。
Placeholder(PlaceholderShape)
占位符(标题、正文…)。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ShapeKind
impl RefUnwindSafe for ShapeKind
impl Send for ShapeKind
impl Sync for ShapeKind
impl Unpin for ShapeKind
impl UnsafeUnpin for ShapeKind
impl UnwindSafe for ShapeKind
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