pub enum Gsm7BitEncodeError {
UnencodableCharacter(char),
}Available on crate feature
encoding only.Expand description
Errors that can occur during GSM 7-bit encoding.
Variants§
Trait Implementations§
Source§impl Debug for Gsm7BitEncodeError
impl Debug for Gsm7BitEncodeError
Source§impl Display for Gsm7BitEncodeError
impl Display for Gsm7BitEncodeError
Source§impl Error for Gsm7BitEncodeError
impl Error for Gsm7BitEncodeError
1.30.0§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§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Gsm7BitEncodeError> for Gsm7BitConcatenateError
impl From<Gsm7BitEncodeError> for Gsm7BitConcatenateError
Source§fn from(source: Gsm7BitEncodeError) -> Self
fn from(source: Gsm7BitEncodeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Gsm7BitEncodeError
impl PartialEq for Gsm7BitEncodeError
impl Eq for Gsm7BitEncodeError
impl StructuralPartialEq for Gsm7BitEncodeError
Auto Trait Implementations§
impl Freeze for Gsm7BitEncodeError
impl RefUnwindSafe for Gsm7BitEncodeError
impl Send for Gsm7BitEncodeError
impl Sync for Gsm7BitEncodeError
impl Unpin for Gsm7BitEncodeError
impl UnwindSafe for Gsm7BitEncodeError
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more