pub struct ExternalLink {
    pub id: ExternalLinkId,
    pub from: PageId,
    pub to: String,
    pub index: Vec<u8>,
    pub index_60: Vec<u8>,
}Expand description
Represents a row in the externallinks table.
Fields§
§id: ExternalLinkId§from: PageId§to: String§index: Vec<u8>§index_60: Vec<u8>Trait Implementations§
Source§impl Clone for ExternalLink
 
impl Clone for ExternalLink
Source§fn clone(&self) -> ExternalLink
 
fn clone(&self) -> ExternalLink
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 ExternalLink
 
impl Debug for ExternalLink
Source§impl<'de> Deserialize<'de> for ExternalLink
 
impl<'de> Deserialize<'de> for ExternalLink
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 ExternalLink
 
impl<'input> FromSqlTuple<'input> for ExternalLink
fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>
Source§impl Hash for ExternalLink
 
impl Hash for ExternalLink
Source§impl Ord for ExternalLink
 
impl Ord for ExternalLink
Source§fn cmp(&self, other: &ExternalLink) -> Ordering
 
fn cmp(&self, other: &ExternalLink) -> 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 ExternalLink
 
impl PartialEq for ExternalLink
Source§impl PartialOrd for ExternalLink
 
impl PartialOrd for ExternalLink
Source§impl Serialize for ExternalLink
 
impl Serialize for ExternalLink
impl Eq for ExternalLink
impl StructuralPartialEq for ExternalLink
Auto Trait Implementations§
impl Freeze for ExternalLink
impl RefUnwindSafe for ExternalLink
impl Send for ExternalLink
impl Sync for ExternalLink
impl Unpin for ExternalLink
impl UnwindSafe for ExternalLink
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