Struct prost::EncodeError
source · [−]pub struct EncodeError { /* private fields */ }
Expand description
A Protobuf message encoding error.
EncodeError
always indicates that a message failed to encode because the
provided buffer had insufficient capacity. Message encoding is otherwise
infallible.
Implementations
sourceimpl EncodeError
impl EncodeError
Trait Implementations
sourceimpl Clone for EncodeError
impl Clone for EncodeError
sourcefn clone(&self) -> EncodeError
fn clone(&self) -> EncodeError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EncodeError
impl Debug for EncodeError
sourceimpl Display for EncodeError
impl Display for EncodeError
sourceimpl Error for EncodeError
impl Error for EncodeError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<EncodeError> for Error
impl From<EncodeError> for Error
sourcefn from(error: EncodeError) -> Error
fn from(error: EncodeError) -> Error
Performs the conversion.
sourceimpl PartialEq<EncodeError> for EncodeError
impl PartialEq<EncodeError> for EncodeError
sourcefn eq(&self, other: &EncodeError) -> bool
fn eq(&self, other: &EncodeError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EncodeError) -> bool
fn ne(&self, other: &EncodeError) -> bool
This method tests for !=
.
impl Copy for EncodeError
impl Eq for EncodeError
impl StructuralEq for EncodeError
impl StructuralPartialEq for EncodeError
Auto Trait Implementations
impl RefUnwindSafe for EncodeError
impl Send for EncodeError
impl Sync for EncodeError
impl Unpin for EncodeError
impl UnwindSafe for EncodeError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more