[][src]Struct orgize::elements::Link

pub struct Link<'a> {
    pub path: Cow<'a, str>,
    pub desc: Option<Cow<'a, str>>,
}

Link Object

Fields

path: Cow<'a, str>

Link destination

desc: Option<Cow<'a, str>>

Implementations

impl<'_> Link<'_>[src]

pub fn into_owned(self) -> Link<'static>[src]

Trait Implementations

impl<'a> Clone for Link<'a>[src]

impl<'a> Debug for Link<'a>[src]

impl<'a> From<Link<'a>> for Element<'a>[src]

impl<'a> Serialize for Link<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Link<'a>

impl<'a> Send for Link<'a>

impl<'a> Sync for Link<'a>

impl<'a> Unpin for Link<'a>

impl<'a> UnwindSafe for Link<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.