Struct shadow_rs::SplicedStr
source · pub struct SplicedStr {
pub output: &'static str,
pub removed: &'static str,
}
Expand description
The return value of str_splice
Fields§
§output: &'static str
A string that had removed
replaced with some other string.
removed: &'static str
The part of the string that was removed.
Trait Implementations§
source§impl Clone for SplicedStr
impl Clone for SplicedStr
source§fn clone(&self) -> SplicedStr
fn clone(&self) -> SplicedStr
Returns a copy 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 Debug for SplicedStr
impl Debug for SplicedStr
source§impl PartialEq<SplicedStr> for SplicedStr
impl PartialEq<SplicedStr> for SplicedStr
source§fn eq(&self, other: &SplicedStr) -> bool
fn eq(&self, other: &SplicedStr) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.