pub struct ObjectRef {
pub shape_id: u32,
pub prog_id: Option<String>,
pub rel_id: Option<String>,
pub part: Option<String>,
pub content_type: Option<String>,
pub external: Option<String>,
}Expand description
An embedded object (p:oleObj) on a slide with its package part resolved.
Fields§
§shape_id: u32cNvPr/@id of the graphic frame.
prog_id: Option<String>@progId, e.g. Excel.Sheet.12.
rel_id: Option<String>§part: Option<String>The embedding part, when the relationship is internal and resolves.
content_type: Option<String>§external: Option<String>The external target for linked objects.
Trait Implementations§
impl Eq for ObjectRef
impl StructuralPartialEq for ObjectRef
Auto Trait Implementations§
impl Freeze for ObjectRef
impl RefUnwindSafe for ObjectRef
impl Send for ObjectRef
impl Sync for ObjectRef
impl Unpin for ObjectRef
impl UnsafeUnpin for ObjectRef
impl UnwindSafe for ObjectRef
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