pub struct PendingReply {
pub comment_id: String,
pub content: String,
}Expand description
An operator-authored reply (**** REPLY subheading) under a comment that has
not yet been posted to Google.
Whether a reply has been posted is tracked in the sync state (by comment_id +
content), not by mutating this subtree — so the operator’s text is never
rewritten (A3) and the bookkeeping stays in machine state (DI-3).
Fields§
§comment_id: StringThe :COMMENT_ID: of the comment this reply answers.
content: StringThe reply text (the subheading’s body, whitespace-trimmed).
Trait Implementations§
Source§impl Clone for PendingReply
impl Clone for PendingReply
Source§fn clone(&self) -> PendingReply
fn clone(&self) -> PendingReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PendingReply
impl Debug for PendingReply
impl Eq for PendingReply
Source§impl PartialEq for PendingReply
impl PartialEq for PendingReply
impl StructuralPartialEq for PendingReply
Auto Trait Implementations§
impl Freeze for PendingReply
impl RefUnwindSafe for PendingReply
impl Send for PendingReply
impl Sync for PendingReply
impl Unpin for PendingReply
impl UnsafeUnpin for PendingReply
impl UnwindSafe for PendingReply
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.