object
0.36.5
ReadError
Required Methods
read_error
Implementations on Foreign Types
Option<T>
Result<T, ()>
Result<T, Error>
Implementors
In object::read
Trait
object
::
read
::
ReadError
Copy item path
source
·
[
−
]
trait ReadError<T> { // Required method fn
read_error
(self, error: &'static
str
) ->
Result
<T>; }
Required Methods
§
source
fn
read_error
(self, error: &'static
str
) ->
Result
<T>
Implementations on Foreign Types
§
source
§
impl<T>
ReadError
<T> for
Option
<T>
source
§
fn
read_error
(self, error: &'static
str
) ->
Result
<T>
source
§
impl<T>
ReadError
<T> for
Result
<T,
()
>
source
§
fn
read_error
(self, error: &'static
str
) ->
Result
<T>
source
§
impl<T>
ReadError
<T> for
Result
<T,
Error
>
source
§
fn
read_error
(self, error: &'static
str
) ->
Result
<T>
Implementors
§