pub struct RecentChangeId(pub u32);
Expand description
Represents
rc_id
,
the primary key of the recentchanges
table.
Tuple Fields§
§0: u32
Implementations§
Source§impl RecentChangeId
impl RecentChangeId
pub fn into_inner(self) -> u32
Trait Implementations§
Source§impl Clone for RecentChangeId
impl Clone for RecentChangeId
Source§fn clone(&self) -> RecentChangeId
fn clone(&self) -> RecentChangeId
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 RecentChangeId
impl Debug for RecentChangeId
Source§impl<'de> Deserialize<'de> for RecentChangeId
impl<'de> Deserialize<'de> for RecentChangeId
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<'a> From<&'a RecentChangeId> for &'a u32
impl<'a> From<&'a RecentChangeId> for &'a u32
Source§fn from(val: &'a RecentChangeId) -> Self
fn from(val: &'a RecentChangeId) -> Self
Converts to this type from the input type.
Source§impl From<RecentChangeId> for u32
impl From<RecentChangeId> for u32
Source§fn from(val: RecentChangeId) -> Self
fn from(val: RecentChangeId) -> Self
Converts to this type from the input type.
Source§impl From<u32> for RecentChangeId
impl From<u32> for RecentChangeId
Source§impl<'input> FromSql<'input> for RecentChangeId
impl<'input> FromSql<'input> for RecentChangeId
Source§impl Hash for RecentChangeId
impl Hash for RecentChangeId
Source§impl Ord for RecentChangeId
impl Ord for RecentChangeId
Source§fn cmp(&self, other: &RecentChangeId) -> Ordering
fn cmp(&self, other: &RecentChangeId) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RecentChangeId
impl PartialEq for RecentChangeId
Source§impl PartialOrd for RecentChangeId
impl PartialOrd for RecentChangeId
Source§impl Serialize for RecentChangeId
impl Serialize for RecentChangeId
impl Copy for RecentChangeId
impl Eq for RecentChangeId
impl StructuralPartialEq for RecentChangeId
Auto Trait Implementations§
impl Freeze for RecentChangeId
impl RefUnwindSafe for RecentChangeId
impl Send for RecentChangeId
impl Sync for RecentChangeId
impl Unpin for RecentChangeId
impl UnwindSafe for RecentChangeId
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