pub struct Shape {
pub id: u32,
pub name: String,
pub hidden: bool,
pub description: Option<String>,
pub hyperlink: Option<String>,
pub placeholder: Option<Placeholder>,
pub transform: Option<Transform>,
pub text_box: bool,
pub content: Content,
}Expand description
One node of the shape tree (19.3.1.45).
Fields§
§id: u32cNvPr/@id.
name: StringcNvPr/@name.
cNvPr/@hidden.
description: Option<String>cNvPr/@descr, the alternative text.
hyperlink: Option<String>cNvPr/hlinkClick/@r:id.
placeholder: Option<Placeholder>§transform: Option<Transform>§text_box: boolcNvSpPr/@txBox: the shape is a text box.
content: ContentImplementations§
Trait Implementations§
impl Eq for Shape
impl StructuralPartialEq for Shape
Auto Trait Implementations§
impl Freeze for Shape
impl RefUnwindSafe for Shape
impl Send for Shape
impl Sync for Shape
impl Unpin for Shape
impl UnsafeUnpin for Shape
impl UnwindSafe for Shape
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