pub struct RecentChange {
pub kind: Option<ChangeKind>,
pub key: Option<String>,
pub author: Option<ChangeAuthor>,
pub ip: Option<String>,
pub timestamp: Option<String>,
pub comment: Option<String>,
pub changes: Option<Vec<ChangeDetail>>,
}Expand description
One entry in the recent-changes feed.
Fields§
§kind: Option<ChangeKind>§key: Option<String>§ip: Option<String>§timestamp: Option<String>§comment: Option<String>§changes: Option<Vec<ChangeDetail>>Trait Implementations§
Source§impl Clone for RecentChange
impl Clone for RecentChange
Source§fn clone(&self) -> RecentChange
fn clone(&self) -> RecentChange
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 RecentChange
impl Debug for RecentChange
Source§impl<'de> Deserialize<'de> for RecentChange
impl<'de> Deserialize<'de> for RecentChange
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 RecentChange
impl RefUnwindSafe for RecentChange
impl Send for RecentChange
impl Sync for RecentChange
impl Unpin for RecentChange
impl UnsafeUnpin for RecentChange
impl UnwindSafe for RecentChange
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