pub struct GraphicalObject {
pub graphic_data: GraphicalObjectData,
}
Fields§
§graphic_data: GraphicalObjectData
This element specifies the reference to a graphic object within the document. This graphic object is provided entirely by the document authors who choose to persist this data within the document.
§Note
Depending on the kind of graphical object used not every generating application that supports the OOXML framework has the ability to render the graphical object.
Implementations§
Source§impl GraphicalObject
impl GraphicalObject
pub fn from_xml_element(xml_node: &XmlNode) -> Result<Self>
Trait Implementations§
Source§impl Clone for GraphicalObject
impl Clone for GraphicalObject
Source§fn clone(&self) -> GraphicalObject
fn clone(&self) -> GraphicalObject
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GraphicalObject
impl Debug for GraphicalObject
Source§impl PartialEq for GraphicalObject
impl PartialEq for GraphicalObject
impl StructuralPartialEq for GraphicalObject
Auto Trait Implementations§
impl Freeze for GraphicalObject
impl RefUnwindSafe for GraphicalObject
impl Send for GraphicalObject
impl Sync for GraphicalObject
impl Unpin for GraphicalObject
impl UnwindSafe for GraphicalObject
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