[][src]Struct orgize::elements::InlineCall

pub struct InlineCall<'a> {
    pub name: Cow<'a, str>,
    pub inside_header: Option<Cow<'a, str>>,
    pub arguments: Cow<'a, str>,
    pub end_header: Option<Cow<'a, str>>,
}

Inline Babel Call Object

Fields

name: Cow<'a, str>

Called code block name

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

Header arguments applied to the code block

arguments: Cow<'a, str>

Argument passed to the code block

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

Header arguments applied to the calling instance

Implementations

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

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

Trait Implementations

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

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

impl<'a> Default for InlineCall<'a>[src]

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for InlineCall<'a>

impl<'a> Send for InlineCall<'a>

impl<'a> Sync for InlineCall<'a>

impl<'a> Unpin for InlineCall<'a>

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