pub struct Comment {
pub author: Option<String>,
pub initials: Option<String>,
pub date: Option<String>,
pub text: String,
pub reply: bool,
}Expand description
A comment on a slide; replies follow their parent with reply set.
Fields§
The author’s name when the authors part resolves the id, else the raw id.
initials: Option<String>§date: Option<String>@dt (2006) or @created (2018) as written.
text: String§reply: boolTrait Implementations§
impl Eq for Comment
impl StructuralPartialEq for Comment
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