#![allow(non_snake_case)]
use std::borrow::Cow;
use std::path::Path;
#[cfg_attr(clippy, allow(inline_always))]
#[inline(always)]
pub fn Font<S>(string: S) -> ::Font
where S: Into<Cow<'static, str>>
{
::Font(string.into())
}
#[cfg_attr(clippy, allow(inline_always))]
#[inline(always)]
pub fn Label<S>(string: S) -> ::Label
where S: Into<Cow<'static, str>>
{
::Label(string.into())
}
#[cfg_attr(clippy, allow(inline_always))]
#[inline(always)]
pub fn Title<S>(string: S) -> ::Title
where S: Into<Cow<'static, str>>
{
::Title(string.into())
}
#[cfg_attr(clippy, allow(inline_always))]
#[inline(always)]
pub fn Output<P>(path: P) -> ::Output
where P: Into<Cow<'static, Path>>
{
::Output(path.into())
}