pub struct Glossed {
pub timestamp: Timestamp,
pub is_sidechain: bool,
pub gloss: Gloss,
pub uuid: Option<String>,
pub answers: Option<String>,
}Expand description
A harness note where it sits in the session.
Fields§
§timestamp: Timestamp§is_sidechain: bool§gloss: Gloss§uuid: Option<String>The session’s own name for this line.
answers: Option<String>The line this note was written about, where it names one. A slash
command’s output is a system line naming the command’s own line as its
parent, which is the exact key that gathers the two into one panel.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Glossed
impl RefUnwindSafe for Glossed
impl Send for Glossed
impl Sync for Glossed
impl Unpin for Glossed
impl UnsafeUnpin for Glossed
impl UnwindSafe for Glossed
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more