pub enum GroupChild {
Sp(AutoShape),
Pic(Picture),
Cx(Connector),
Grp(Box<Group>),
Gfx(TableShape),
}Expand description
高阶 GroupChild 枚举。
与 crate::oxml::shape::GroupChild 的区别在于:本枚举承载的是
高阶包装(AutoShape / Picture / Connector / Group / TableShape),
方便调用方继续操作。
Variants§
Sp(AutoShape)
自选形状。
Pic(Picture)
图片。
Cx(Connector)
连接器。
Grp(Box<Group>)
递归 Group。
Gfx(TableShape)
图形框(目前仅承载表格)。
Trait Implementations§
Source§impl Clone for GroupChild
impl Clone for GroupChild
Source§fn clone(&self) -> GroupChild
fn clone(&self) -> GroupChild
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 moreAuto Trait Implementations§
impl Freeze for GroupChild
impl RefUnwindSafe for GroupChild
impl Send for GroupChild
impl Sync for GroupChild
impl Unpin for GroupChild
impl UnsafeUnpin for GroupChild
impl UnwindSafe for GroupChild
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