pub struct RecentChangeEvent {Show 22 fields
pub meta: EventMeta,
pub id: Option<usize>,
pub ty: Option<String>,
pub title: Option<String>,
pub namespace: Option<i64>,
pub comment: Option<String>,
pub parsedcomment: Option<String>,
pub timestamp: Option<i64>,
pub user: Option<String>,
pub bot: bool,
pub server_url: Option<String>,
pub server_script_path: Option<String>,
pub wiki: Option<String>,
pub minor: bool,
pub patrolled: Option<bool>,
pub length: Option<OldNew>,
pub revision: Option<OldNew>,
pub log_id: Option<u64>,
pub log_type: Option<String>,
pub log_action: Option<String>,
pub log_params: Option<Value>,
pub log_action_comment: Option<String>,
}Expand description
https://schema.wikimedia.org/repositories/primary/jsonschema/mediawiki/recentchange/latest.json
Fields§
§meta: EventMeta§id: Option<usize>§ty: Option<String>§title: Option<String>§namespace: Option<i64>§comment: Option<String>§parsedcomment: Option<String>§timestamp: Option<i64>§user: Option<String>§bot: bool§server_url: Option<String>§server_script_path: Option<String>§wiki: Option<String>§minor: bool§patrolled: Option<bool>§length: Option<OldNew>§revision: Option<OldNew>§log_id: Option<u64>§log_type: Option<String>§log_action: Option<String>§log_params: Option<Value>§log_action_comment: Option<String>Trait Implementations§
Source§impl Clone for RecentChangeEvent
impl Clone for RecentChangeEvent
Source§fn clone(&self) -> RecentChangeEvent
fn clone(&self) -> RecentChangeEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 RecentChangeEvent
impl Debug for RecentChangeEvent
Source§impl<'de> Deserialize<'de> for RecentChangeEvent
impl<'de> Deserialize<'de> for RecentChangeEvent
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 RecentChangeEvent
impl RefUnwindSafe for RecentChangeEvent
impl Send for RecentChangeEvent
impl Sync for RecentChangeEvent
impl Unpin for RecentChangeEvent
impl UnwindSafe for RecentChangeEvent
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