pub struct Group {
pub id: u32,
pub name: String,
pub properties: ShapeProperties,
pub children: Vec<GroupChild>,
pub ext: (Emu, Emu),
pub off: (Emu, Emu),
pub style: Option<ShapeStyle>,
pub ext_lst: Option<ExtensionList>,
}Expand description
<p:grpSp> 组合形状。
Fields§
§id: u32§name: String§properties: ShapeProperties§children: Vec<GroupChild>子形状(递归)。
ext: (Emu, Emu)组合自己的大小(写在 a:xfrm 上)。
off: (Emu, Emu)§style: Option<ShapeStyle>主题样式引用(p:style,可选)。
ext_lst: Option<ExtensionList>扩展列表。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnsafeUnpin for Group
impl UnwindSafe for Group
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