pub enum AttachmentError {
NotFound {
path: PathBuf,
},
UnsupportedExtension {
path: PathBuf,
ext: String,
},
TooLarge {
path: PathBuf,
size: u64,
},
UnreadableImage {
path: PathBuf,
},
}Expand description
Why prepare_user_message rejected an attachment.
Variants§
Implementations§
Source§impl AttachmentError
impl AttachmentError
pub fn kind(&self) -> AttachmentErrorKind
Trait Implementations§
Source§impl Clone for AttachmentError
impl Clone for AttachmentError
Source§fn clone(&self) -> AttachmentError
fn clone(&self) -> AttachmentError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AttachmentError
impl Debug for AttachmentError
Source§impl Display for AttachmentError
impl Display for AttachmentError
Source§impl Error for AttachmentError
impl Error for AttachmentError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for AttachmentError
impl PartialEq for AttachmentError
Source§fn eq(&self, other: &AttachmentError) -> bool
fn eq(&self, other: &AttachmentError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AttachmentError
impl StructuralPartialEq for AttachmentError
Auto Trait Implementations§
impl Freeze for AttachmentError
impl RefUnwindSafe for AttachmentError
impl Send for AttachmentError
impl Sync for AttachmentError
impl Unpin for AttachmentError
impl UnsafeUnpin for AttachmentError
impl UnwindSafe for AttachmentError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.