DString

Type Alias DString 

Source
pub type DString = Generic<String>;

Aliased Type§

pub struct DString { /* private fields */ }

Trait Implementations§

Source§

impl Add<&Generic<String>> for TString

Source§

type Output = Generic<String>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &TString) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<&str> for TString

Source§

fn add_assign(&mut self, rhs: &str)

Performs the += operation. Read more
Source§

impl PartialEq<&str> for TString

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.