pub struct Pending {
pub ref_id: String,
pub kind: CommentKind,
pub key: String,
pub newest: String,
pub author: String,
pub association: String,
pub body: String,
pub file: Option<String>,
pub line: Option<i64>,
pub hunk: String,
pub url: String,
pub at: String,
}Expand description
One thing somebody said that spar has not answered.
Fields§
§ref_id: StringThe handle spar prints in the prompt and matches an answer back on: “c1”, “c2”.
kind: CommentKind§key: StringWhat the watermark is keyed on.
newest: StringThe newest message in it that spar did not write, as an opaque id. The watermark’s value, so a thread that has moved is read again.
association: String§body: StringEvery message in the thread, oldest first, each attributed. A request refined three replies down is not the opening sentence, and judging it on the opening sentence answers a question nobody asked.
file: Option<String>§line: Option<i64>§hunk: StringThe diff hunk GitHub shows above an inline thread.
url: String§at: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pending
impl RefUnwindSafe for Pending
impl Send for Pending
impl Sync for Pending
impl Unpin for Pending
impl UnsafeUnpin for Pending
impl UnwindSafe for Pending
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