Type Alias Comment

Source
pub type Comment = AuthoredMessage;
Expand description

A comment is effectively equivalent to an AuthoredMessage, and is stored as such.

Aliased Type§

pub struct Comment {
    pub author: String,
    pub contents: NodeContents,
    pub time_sent: String,
    pub index: String,
}

Fields§

§author: String§contents: NodeContents§time_sent: String§index: String