pub struct StrungUnit;Expand description
Just an empty unit struct with Strung trait!
Trait Implementations§
Source§impl Strung for StrungUnit
impl Strung for StrungUnit
Source§fn strung_dynamic(&self, _pre: &str, _post: &str, text: &str) -> String
fn strung_dynamic(&self, _pre: &str, _post: &str, text: &str) -> String
Replacement with custom inline Postfixes and Prefixes
Source§fn strung(&self, text: &str) -> String
fn strung(&self, text: &str) -> String
Default text replacement via
{field_name}, changable via #[strung("pre","post")]
This is the most efficient cause pre- anf postfixes are merged with the field-names on compilation time!Source§fn strung_static(&self, text: &str) -> String
fn strung_static(&self, text: &str) -> String
Replacement with custom static postfixes and prefixes Read more
Source§fn strung_curly(&self, text: &str) -> String
fn strung_curly(&self, text: &str) -> String
Same as Strung::strung but not changable and always addressable by
{field_name}Source§fn strung_dollar(&self, text: &str) -> String
fn strung_dollar(&self, text: &str) -> String
Same as Strung::strung but not changable and always addressable by
$field_nameSource§fn strung_dollry(&self, text: &str) -> String
fn strung_dollry(&self, text: &str) -> String
Same as Strung::strung but not changable and always addressable by
${field_name}Source§fn strung_hashtag(&self, text: &str) -> String
fn strung_hashtag(&self, text: &str) -> String
Same as Strung::strung but not changable and always addressable by
#field_nameSource§fn strung_angle(&self, text: &str) -> String
fn strung_angle(&self, text: &str) -> String
Same as Strung::strung but not changable and always addressable by
<field_name>Auto Trait Implementations§
impl Freeze for StrungUnit
impl RefUnwindSafe for StrungUnit
impl Send for StrungUnit
impl Sync for StrungUnit
impl Unpin for StrungUnit
impl UnsafeUnpin for StrungUnit
impl UnwindSafe for StrungUnit
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