pub struct Page<'input> {
pub id: PageId,
pub namespace: PageNamespace,
pub title: PageTitle,
pub is_redirect: bool,
pub is_new: bool,
pub random: NotNan<f64>,
pub touched: Timestamp,
pub links_updated: Option<Timestamp>,
pub latest: u32,
pub len: u32,
pub content_model: Option<ContentModel<'input>>,
pub lang: Option<&'input str>,
}
Expand description
Represents a row in the page
table.
Fields§
§id: PageId
§namespace: PageNamespace
§title: PageTitle
§is_redirect: bool
§is_new: bool
§random: NotNan<f64>
§touched: Timestamp
§links_updated: Option<Timestamp>
§latest: u32
§len: u32
§content_model: Option<ContentModel<'input>>
§lang: Option<&'input str>
Trait Implementations§
Source§impl<'de: 'input, 'input> Deserialize<'de> for Page<'input>
impl<'de: 'input, 'input> Deserialize<'de> for Page<'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 Page<'input>
impl<'input> FromSqlTuple<'input> for Page<'input>
fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>
Source§impl<'input> Ord for Page<'input>
impl<'input> Ord for Page<'input>
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> PartialOrd for Page<'input>
impl<'input> PartialOrd for Page<'input>
impl<'input> Eq for Page<'input>
impl<'input> StructuralPartialEq for Page<'input>
Auto Trait Implementations§
impl<'input> Freeze for Page<'input>
impl<'input> RefUnwindSafe for Page<'input>
impl<'input> Send for Page<'input>
impl<'input> Sync for Page<'input>
impl<'input> Unpin for Page<'input>
impl<'input> UnwindSafe for Page<'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