pub struct Comment {
pub reference: String,
pub author: Option<String>,
pub text: String,
}Expand description
A comment (note) attached to a cell, as returned by ResolvedSheet::comments.
Fields§
§reference: StringCell reference (e.g., “A1”)
Comment author (if available)
text: StringComment text
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 UnsafeUnpin 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