pub struct Comment { /* private fields */ }
Implementations§
Source§impl Comment
impl Comment
pub fn get_coordinate(&self) -> &Coordinate
pub fn get_coordinate_mut(&mut self) -> &mut Coordinate
pub fn get_text(&self) -> &RichText
pub fn get_text_mut(&mut self) -> &mut RichText
pub fn set_text(&mut self, value: RichText) -> &mut Self
pub fn set_text_string<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn get_anchor(&self) -> &Anchor
pub fn get_anchor_mut(&mut self) -> &mut Anchor
pub fn set_anchor(&mut self, value: Anchor) -> &mut Self
pub fn get_shape(&self) -> &Shape
pub fn get_shape_mut(&mut self) -> &mut Shape
pub fn set_shape(&mut self, value: Shape) -> &mut Self
pub fn new_comment<T>(&mut self, coordinate: T) -> &mut Selfwhere
T: Into<CellCoordinates>,
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Comment
impl RefUnwindSafe for Comment
impl Send for Comment
impl Sync for Comment
impl Unpin for Comment
impl UnwindSafe for Comment
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