pub struct ImageRef {
pub shape_id: u32,
pub rel_id: String,
pub part: Option<String>,
pub content_type: Option<String>,
pub external: Option<String>,
}Expand description
An image referenced from a slide.
Fields§
§shape_id: u32cNvPr/@id of the picture shape.
rel_id: String§part: Option<String>The image part, when the relationship is internal and resolves.
content_type: Option<String>The image part’s declared content type.
external: Option<String>The external target for linked images.
Trait Implementations§
impl Eq for ImageRef
impl StructuralPartialEq for ImageRef
Auto Trait Implementations§
impl Freeze for ImageRef
impl RefUnwindSafe for ImageRef
impl Send for ImageRef
impl Sync for ImageRef
impl Unpin for ImageRef
impl UnsafeUnpin for ImageRef
impl UnwindSafe for ImageRef
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