1 2 3 4 5 6
use std::borrow::Cow; pub struct ConfigClient<'a>{ pub(crate) host: Cow<'a, str>, pub(crate) user: Cow<'a, str>, pub(crate) password: Cow<'a, str>, }