Enum diff::Result
[−]
[src]
pub enum Result<T> {
Left(T),
Both(T, T),
Right(T),
}A fragment of a computed diff.
Variants
Left(T)Both(T, T)Right(T)
Trait Implementations
impl<T: Clone> Clone for Result<T>[src]
fn clone(&self) -> Result<T>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more