pub struct RevisionEntry {
pub revision: Option<String>,
pub timestamp: Option<i64>,
}Expand description
A single moderated revision of a question.
Fields§
§revision: Option<String>Revised question text.
timestamp: Option<i64>Revision time as a Unix timestamp (seconds).
Trait Implementations§
Source§impl Clone for RevisionEntry
impl Clone for RevisionEntry
Source§fn clone(&self) -> RevisionEntry
fn clone(&self) -> RevisionEntry
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 RevisionEntry
impl Debug for RevisionEntry
Source§impl<'de> Deserialize<'de> for RevisionEntry
impl<'de> Deserialize<'de> for RevisionEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RevisionEntry
impl RefUnwindSafe for RevisionEntry
impl Send for RevisionEntry
impl Sync for RevisionEntry
impl Unpin for RevisionEntry
impl UnsafeUnpin for RevisionEntry
impl UnwindSafe for RevisionEntry
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