pub trait TryWith<T> {
    type Output;
    type Error;

    // Required method
    fn try_with(&self, other: &T) -> Result<Self::Output, Self::Error>;
}
Expand description

TryWith is a trait that describes a means of trying to concate several objects together

Required Associated Types§

Required Methods§

source

fn try_with(&self, other: &T) -> Result<Self::Output, Self::Error>

Implementors§