pub trait TagExt {
// Required methods
fn default_script() -> Self;
fn default_language() -> Self;
fn to_uppercase(&self) -> Self;
}
Required Methods§
fn default_script() -> Self
fn default_language() -> Self
fn to_uppercase(&self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl TagExt for Tag
impl TagExt for Tag
Source§fn to_uppercase(&self) -> Self
fn to_uppercase(&self) -> Self
Converts tag to uppercase.