pub struct OrphanLink {
pub label: String,
pub count: i64,
}Expand description
One orphaned page link label aggregated across sources.
count is how many distinct source pages reference this label
without a matching target page existing.
Fields§
§label: String§count: i64Trait Implementations§
Source§impl Clone for OrphanLink
impl Clone for OrphanLink
Source§fn clone(&self) -> OrphanLink
fn clone(&self) -> OrphanLink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrphanLink
impl Debug for OrphanLink
Source§impl<'de> Deserialize<'de> for OrphanLink
impl<'de> Deserialize<'de> for OrphanLink
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OrphanLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OrphanLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OrphanLink
impl PartialEq for OrphanLink
Source§fn eq(&self, other: &OrphanLink) -> bool
fn eq(&self, other: &OrphanLink) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OrphanLink
impl Serialize for OrphanLink
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for OrphanLink
Auto Trait Implementations§
impl Freeze for OrphanLink
impl RefUnwindSafe for OrphanLink
impl Send for OrphanLink
impl Sync for OrphanLink
impl Unpin for OrphanLink
impl UnsafeUnpin for OrphanLink
impl UnwindSafe for OrphanLink
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