Enum GetTimezoneError

enum GetTimezoneError

Error types

Variants

FailedParsingString

Failed to parse

IoError(std::io::Error)

Wrapped IO error

OsError

Platform-specific error from the operating system

Implementations

impl Debug for GetTimezoneError

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl Display for GetTimezoneError

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result<(), Error>

impl Error for GetTimezoneError

fn source(self: &Self) -> Option<&dyn Error + 'static>

impl Freeze for GetTimezoneError

impl From for GetTimezoneError

fn from(orig: Error) -> Self

impl RefUnwindSafe for GetTimezoneError

impl Send for GetTimezoneError

impl Sync for GetTimezoneError

impl Unpin for GetTimezoneError

impl UnsafeUnpin for GetTimezoneError

impl UnwindSafe for GetTimezoneError

impl<T> Any for GetTimezoneError

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for GetTimezoneError

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for GetTimezoneError

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for GetTimezoneError

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToString for GetTimezoneError

fn to_string(self: &Self) -> String

impl<T, U> Into for GetTimezoneError

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for GetTimezoneError

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for GetTimezoneError

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>