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>>,
}
Expand description
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§
Source§impl InlineCall<'_>
impl InlineCall<'_>
pub fn into_owned(self) -> InlineCall<'static>
Trait Implementations§
Source§impl<'a> Clone for InlineCall<'a>
impl<'a> Clone for InlineCall<'a>
Source§fn clone(&self) -> InlineCall<'a>
fn clone(&self) -> InlineCall<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for InlineCall<'a>
impl<'a> Debug for InlineCall<'a>
Source§impl<'a> Default for InlineCall<'a>
impl<'a> Default for InlineCall<'a>
Source§fn default() -> InlineCall<'a>
fn default() -> InlineCall<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> From<InlineCall<'a>> for Element<'a>
impl<'a> From<InlineCall<'a>> for Element<'a>
Source§fn from(ele: InlineCall<'a>) -> Element<'a>
fn from(ele: InlineCall<'a>) -> Element<'a>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for InlineCall<'a>
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§
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