pub struct FullPageTitle(pub String);
Expand description
Represents a page title with namespace and with spaces rather than underscores,
as in the
ll_title
field of the langlinks
table.
Tuple Fields§
§0: String
Implementations§
Source§impl FullPageTitle
impl FullPageTitle
pub fn into_inner(self) -> String
Trait Implementations§
Source§impl Clone for FullPageTitle
impl Clone for FullPageTitle
Source§fn clone(&self) -> FullPageTitle
fn clone(&self) -> FullPageTitle
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 FullPageTitle
impl Debug for FullPageTitle
Source§impl<'de> Deserialize<'de> for FullPageTitle
impl<'de> Deserialize<'de> for FullPageTitle
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 FullPageTitle> for &'a String
impl<'a> From<&'a FullPageTitle> for &'a String
Source§fn from(val: &'a FullPageTitle) -> Self
fn from(val: &'a FullPageTitle) -> Self
Converts to this type from the input type.
Source§impl From<FullPageTitle> for String
impl From<FullPageTitle> for String
Source§fn from(val: FullPageTitle) -> Self
fn from(val: FullPageTitle) -> Self
Converts to this type from the input type.
Source§impl From<String> for FullPageTitle
impl From<String> for FullPageTitle
Source§impl<'input> FromSql<'input> for FullPageTitle
impl<'input> FromSql<'input> for FullPageTitle
Source§impl Hash for FullPageTitle
impl Hash for FullPageTitle
Source§impl Ord for FullPageTitle
impl Ord for FullPageTitle
Source§fn cmp(&self, other: &FullPageTitle) -> Ordering
fn cmp(&self, other: &FullPageTitle) -> 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 FullPageTitle
impl PartialEq for FullPageTitle
Source§impl PartialOrd for FullPageTitle
impl PartialOrd for FullPageTitle
Source§impl Serialize for FullPageTitle
impl Serialize for FullPageTitle
impl Eq for FullPageTitle
impl StructuralPartialEq for FullPageTitle
Auto Trait Implementations§
impl Freeze for FullPageTitle
impl RefUnwindSafe for FullPageTitle
impl Send for FullPageTitle
impl Sync for FullPageTitle
impl Unpin for FullPageTitle
impl UnwindSafe for FullPageTitle
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