pub struct NotesMasterIdEntry {
pub id: u32,
pub rid: String,
}Expand description
单一 notesMaster 引用(<p:notesMasterId> 元素)。
用于 round-trip 保真:from_opc 解析时回填,to_xml 时遍历写出 <p:notesMasterIdLst>。
空列表时 to_xml 不输出 <p:notesMasterIdLst>(PowerPoint 兼容:无 notesMaster 即不写)。
Fields§
§id: u32备注母版 ID(id 属性,通常 >= 2147483648)。
rid: String关系 id(r:id 属性),指向 ppt/notesMasters/notesMasterN.xml。
Trait Implementations§
Source§impl Clone for NotesMasterIdEntry
impl Clone for NotesMasterIdEntry
Source§fn clone(&self) -> NotesMasterIdEntry
fn clone(&self) -> NotesMasterIdEntry
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 NotesMasterIdEntry
impl RefUnwindSafe for NotesMasterIdEntry
impl Send for NotesMasterIdEntry
impl Sync for NotesMasterIdEntry
impl Unpin for NotesMasterIdEntry
impl UnsafeUnpin for NotesMasterIdEntry
impl UnwindSafe for NotesMasterIdEntry
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