pub struct WikibaseClientEntityUsage<'input> {
    pub row_id: u64,
    pub entity_id: &'input str,
    pub aspect: &'input str,
    pub page_id: PageId,
}Expand description
Represents a row in the wbc_entity_usage table.
Fields§
§row_id: u64§entity_id: &'input str§aspect: &'input str§page_id: PageIdTrait Implementations§
Source§impl<'input> Clone for WikibaseClientEntityUsage<'input>
 
impl<'input> Clone for WikibaseClientEntityUsage<'input>
Source§fn clone(&self) -> WikibaseClientEntityUsage<'input>
 
fn clone(&self) -> WikibaseClientEntityUsage<'input>
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<'input> Debug for WikibaseClientEntityUsage<'input>
 
impl<'input> Debug for WikibaseClientEntityUsage<'input>
Source§impl<'de: 'input, 'input> Deserialize<'de> for WikibaseClientEntityUsage<'input>
 
impl<'de: 'input, 'input> Deserialize<'de> for WikibaseClientEntityUsage<'input>
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<'input> FromSqlTuple<'input> for WikibaseClientEntityUsage<'input>
 
impl<'input> FromSqlTuple<'input> for WikibaseClientEntityUsage<'input>
fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>
Source§impl<'input> Hash for WikibaseClientEntityUsage<'input>
 
impl<'input> Hash for WikibaseClientEntityUsage<'input>
Source§impl<'input> Ord for WikibaseClientEntityUsage<'input>
 
impl<'input> Ord for WikibaseClientEntityUsage<'input>
Source§fn cmp(&self, other: &WikibaseClientEntityUsage<'input>) -> Ordering
 
fn cmp(&self, other: &WikibaseClientEntityUsage<'input>) -> 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<'input> PartialEq for WikibaseClientEntityUsage<'input>
 
impl<'input> PartialEq for WikibaseClientEntityUsage<'input>
Source§fn eq(&self, other: &WikibaseClientEntityUsage<'input>) -> bool
 
fn eq(&self, other: &WikibaseClientEntityUsage<'input>) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'input> PartialOrd for WikibaseClientEntityUsage<'input>
 
impl<'input> PartialOrd for WikibaseClientEntityUsage<'input>
Source§impl<'input> Serialize for WikibaseClientEntityUsage<'input>
 
impl<'input> Serialize for WikibaseClientEntityUsage<'input>
impl<'input> Eq for WikibaseClientEntityUsage<'input>
impl<'input> StructuralPartialEq for WikibaseClientEntityUsage<'input>
Auto Trait Implementations§
impl<'input> Freeze for WikibaseClientEntityUsage<'input>
impl<'input> RefUnwindSafe for WikibaseClientEntityUsage<'input>
impl<'input> Send for WikibaseClientEntityUsage<'input>
impl<'input> Sync for WikibaseClientEntityUsage<'input>
impl<'input> Unpin for WikibaseClientEntityUsage<'input>
impl<'input> UnwindSafe for WikibaseClientEntityUsage<'input>
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