pub struct GraphicFrame { /* private fields */ }Implementations§
Source§impl GraphicFrame
impl GraphicFrame
pub fn macro(&self) -> &str
pub fn get_macro(&self) -> &str
👎Deprecated since 3.0.0:
Use macro()
pub fn set_macro<S: Into<String>>(&mut self, value: S) -> &mut GraphicFrame
pub fn non_visual_graphic_frame_properties( &self, ) -> &NonVisualGraphicFrameProperties
pub fn get_non_visual_graphic_frame_properties( &self, ) -> &NonVisualGraphicFrameProperties
👎Deprecated since 3.0.0:
Use non_visual_graphic_frame_properties()
pub fn non_visual_graphic_frame_properties_mut( &mut self, ) -> &mut NonVisualGraphicFrameProperties
pub fn get_non_visual_graphic_frame_properties_mut( &mut self, ) -> &mut NonVisualGraphicFrameProperties
👎Deprecated since 3.0.0:
Use non_visual_graphic_frame_properties_mut()
pub fn set_non_visual_graphic_frame_properties( &mut self, value: NonVisualGraphicFrameProperties, ) -> &mut Self
pub fn transform(&self) -> &Transform
pub fn get_transform(&self) -> &Transform
👎Deprecated since 3.0.0:
Use transform()
pub fn transform_mut(&mut self) -> &mut Transform
pub fn get_transform_mut(&mut self) -> &mut Transform
👎Deprecated since 3.0.0:
Use transform_mut()
pub fn set_transform(&mut self, value: Transform) -> &mut Self
pub fn graphic(&self) -> &Graphic
pub fn get_graphic(&self) -> &Graphic
👎Deprecated since 3.0.0:
Use graphic()
pub fn graphic_mut(&mut self) -> &mut Graphic
pub fn get_graphic_mut(&mut self) -> &mut Graphic
👎Deprecated since 3.0.0:
Use graphic_mut()
pub fn set_graphic(&mut self, value: Graphic) -> &mut Self
Trait Implementations§
Source§impl Clone for GraphicFrame
impl Clone for GraphicFrame
Source§fn clone(&self) -> GraphicFrame
fn clone(&self) -> GraphicFrame
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 moreSource§impl Debug for GraphicFrame
impl Debug for GraphicFrame
Source§impl Default for GraphicFrame
impl Default for GraphicFrame
Source§fn default() -> GraphicFrame
fn default() -> GraphicFrame
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphicFrame
impl RefUnwindSafe for GraphicFrame
impl Send for GraphicFrame
impl Sync for GraphicFrame
impl Unpin for GraphicFrame
impl UnsafeUnpin for GraphicFrame
impl UnwindSafe for GraphicFrame
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