pub trait IntoTargetAddr<'a> {
    fn into_target_addr(self) -> Result<TargetAddr<'a>>;
}
Expand description

A trait for objects that can be converted to TargetAddr.

Required Methods

Converts the value of self to a TargetAddr.

Implementations on Foreign Types

Implementors