[][src]Struct orgize::elements::Snippet

pub struct Snippet<'a> {
    pub name: Cow<'a, str>,
    pub value: Cow<'a, str>,
}

Export Snippet Object

Fields

name: Cow<'a, str>

Back-end name

value: Cow<'a, str>

Export code

Methods

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

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

Trait Implementations

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Snippet<'a>

impl<'a> Send for Snippet<'a>

impl<'a> Sync for Snippet<'a>

impl<'a> Unpin for Snippet<'a>

impl<'a> UnwindSafe for Snippet<'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, 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.