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
sourcepub fn required_capacity(&self) -> usize
pub fn required_capacity(&self) -> usize
Returns the required buffer capacity to encode the message.
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.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl 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.0fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
sourceimpl From<EncodeError> for Error
impl From<EncodeError> for Error
sourcefn from(error: EncodeError) -> Error
fn from(error: EncodeError) -> Error
Converts to this type from the input type.
sourceimpl PartialEq<EncodeError> for EncodeError
impl PartialEq<EncodeError> for EncodeError
sourcefn eq(&self, other: &EncodeError) -> bool
fn eq(&self, other: &EncodeError) -> bool
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
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more