pub struct RapUpdate {
pub timestamp: u64,
pub item_id: u64,
pub rap: u64,
}Expand description
A rap update for an item on the Rolimons deals page.
These are usually only used for validating that deals are within deal % on the client side of the deals page.
Fields§
§timestamp: u64The timestamp of the activity in unix time.
item_id: u64The unique identifier of the item being sold.
rap: u64The updated rap of an item.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RapUpdate
impl<'de> Deserialize<'de> for RapUpdate
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
Source§impl Ord for RapUpdate
impl Ord for RapUpdate
Source§impl PartialOrd for RapUpdate
impl PartialOrd for RapUpdate
impl Copy for RapUpdate
impl Eq for RapUpdate
impl StructuralPartialEq for RapUpdate
Auto Trait Implementations§
impl Freeze for RapUpdate
impl RefUnwindSafe for RapUpdate
impl Send for RapUpdate
impl Sync for RapUpdate
impl Unpin for RapUpdate
impl UnwindSafe for RapUpdate
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.