pub struct CommentConfig {
pub cell: String,
pub author: String,
pub text: String,
}Expand description
Configuration for a cell comment.
Fields§
§cell: StringThe cell reference (e.g. “A1”).
The author of the comment.
text: StringThe plain text of the comment.
Trait Implementations§
Source§impl Clone for CommentConfig
impl Clone for CommentConfig
Source§fn clone(&self) -> CommentConfig
fn clone(&self) -> CommentConfig
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 CommentConfig
impl Debug for CommentConfig
Source§impl PartialEq for CommentConfig
impl PartialEq for CommentConfig
impl StructuralPartialEq for CommentConfig
Auto Trait Implementations§
impl Freeze for CommentConfig
impl RefUnwindSafe for CommentConfig
impl Send for CommentConfig
impl Sync for CommentConfig
impl Unpin for CommentConfig
impl UnwindSafe for CommentConfig
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