pub struct WorksheetDrawing { /* private fields */ }Implementations§
Source§impl WorksheetDrawing
impl WorksheetDrawing
pub fn get_image_collection(&self) -> &[Image]
pub fn get_image_collection_mut(&mut self) -> &mut ThinVec<Image>
pub fn add_image(&mut self, value: Image) -> &mut Self
pub fn get_image(&self, col: &u32, row: &u32) -> Option<&Image>
pub fn get_image_mut(&mut self, col: &u32, row: &u32) -> Option<&mut Image>
pub fn get_images(&self, col: &u32, row: &u32) -> Vec<&Image>
pub fn get_images_mut(&mut self, col: &u32, row: &u32) -> Vec<&mut Image>
pub fn get_chart_collection(&self) -> &[Chart]
pub fn get_chart_collection_mut(&mut self) -> &mut ThinVec<Chart>
pub fn add_chart_collection(&mut self, value: Chart) -> &mut Self
pub fn get_chart(&self, col: &u32, row: &u32) -> Option<&Chart>
pub fn get_chart_mut(&mut self, col: &u32, row: &u32) -> Option<&mut Chart>
pub fn get_charts(&self, col: &u32, row: &u32) -> Vec<&Chart>
pub fn get_charts_mut(&mut self, col: &u32, row: &u32) -> Vec<&mut Chart>
pub fn get_one_cell_anchor_collection(&self) -> &[OneCellAnchor]
pub fn get_one_cell_anchor_collection_mut( &mut self, ) -> &mut ThinVec<OneCellAnchor>
pub fn add_one_cell_anchor_collection( &mut self, value: OneCellAnchor, ) -> &mut Self
pub fn get_two_cell_anchor_collection(&self) -> &[TwoCellAnchor]
pub fn get_two_cell_anchor_collection_mut( &mut self, ) -> &mut ThinVec<TwoCellAnchor>
pub fn add_two_cell_anchor_collection( &mut self, value: TwoCellAnchor, ) -> &mut Self
pub fn has_drawing_object(&self) -> bool
pub fn get_graphic_frame_collection(&self) -> Vec<&GraphicFrame>
pub fn get_graphic_frame_collection_mut(&mut self) -> Vec<&mut GraphicFrame>
pub fn get_shape_collection(&self) -> Vec<&Shape>
pub fn get_shape_collection_mut(&mut self) -> Vec<&mut Shape>
pub fn get_connection_shape_collection(&self) -> Vec<&ConnectionShape>
pub fn get_connection_shape_collection_mut( &mut self, ) -> Vec<&mut ConnectionShape>
pub fn get_picture_collection(&self) -> Vec<&Picture>
pub fn get_one_cell_anchor_all_list(&mut self) -> Vec<&mut OneCellAnchor>
pub fn get_two_cell_anchor_all_list(&mut self) -> Vec<&mut TwoCellAnchor>
pub fn get_picture_collection_mut(&mut self) -> Vec<&mut Picture>
Trait Implementations§
Source§impl Clone for WorksheetDrawing
impl Clone for WorksheetDrawing
Source§fn clone(&self) -> WorksheetDrawing
fn clone(&self) -> WorksheetDrawing
Returns a duplicate 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 WorksheetDrawing
impl Debug for WorksheetDrawing
Source§impl Default for WorksheetDrawing
impl Default for WorksheetDrawing
Source§fn default() -> WorksheetDrawing
fn default() -> WorksheetDrawing
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WorksheetDrawing
impl RefUnwindSafe for WorksheetDrawing
impl Send for WorksheetDrawing
impl Sync for WorksheetDrawing
impl Unpin for WorksheetDrawing
impl UnwindSafe for WorksheetDrawing
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