pub struct SldMaster {
pub shapes: Vec<Sp>,
pub layout_rids: Vec<String>,
pub background: Option<SlideBackground>,
}Fields§
§shapes: Vec<Sp>母版中的形状列表。
layout_rids: Vec<String>关联的版式关系 ID 列表(指向 slideLayoutN.xml)。
background: Option<SlideBackground>母版背景(<p:bg>,可选)。None 表示使用默认背景。
由 Slide、SlideLayout 继承。详见 OOXML CT_SlideMaster 的 <p:cSld>/<p:bg>。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SldMaster
impl RefUnwindSafe for SldMaster
impl Send for SldMaster
impl Sync for SldMaster
impl Unpin for SldMaster
impl UnsafeUnpin for SldMaster
impl UnwindSafe for SldMaster
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