☰
TryInto
Associated Types
Err
Required Methods
try_into
Implementors
In try_from
?
Trait
try_from
::
TryInto
source
·
[
−
]
pub trait TryInto<T>:
Sized
{ type
Err
; fn
try_into
(self) ->
Result
<T, Self::
Err
>; }
Associated Types
source
type
Err
Required methods
source
fn
try_into
(self) ->
Result
<T, Self::
Err
>
Implementors
source
impl<T, U>
TryInto
<U> for T
where
U:
TryFrom
<T>,
type
Err
= U::
Err