pub struct ResolvedLink {
pub index: u32,
pub source: u32,
pub target: u32,
pub name: Option<String>,
}Fields§
§index: u32§source: u32§target: u32§name: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ResolvedLink
impl Clone for ResolvedLink
Source§fn clone(&self) -> ResolvedLink
fn clone(&self) -> ResolvedLink
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 ResolvedLink
impl Debug for ResolvedLink
impl Eq for ResolvedLink
Source§impl PartialEq for ResolvedLink
impl PartialEq for ResolvedLink
impl StructuralPartialEq for ResolvedLink
Auto Trait Implementations§
impl Freeze for ResolvedLink
impl RefUnwindSafe for ResolvedLink
impl Send for ResolvedLink
impl Sync for ResolvedLink
impl Unpin for ResolvedLink
impl UnsafeUnpin for ResolvedLink
impl UnwindSafe for ResolvedLink
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