#[non_exhaustive]pub enum ApiResponseMetadataError {
BeforeUnixEpoch,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
BeforeUnixEpoch
Trait Implementations§
Source§impl Clone for ApiResponseMetadataError
impl Clone for ApiResponseMetadataError
Source§fn clone(&self) -> ApiResponseMetadataError
fn clone(&self) -> ApiResponseMetadataError
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 moreimpl Copy for ApiResponseMetadataError
Source§impl Debug for ApiResponseMetadataError
impl Debug for ApiResponseMetadataError
Source§impl Display for ApiResponseMetadataError
impl Display for ApiResponseMetadataError
impl Eq for ApiResponseMetadataError
Source§impl Error for ApiResponseMetadataError
impl Error for ApiResponseMetadataError
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 ApiResponseMetadataError
impl PartialEq for ApiResponseMetadataError
impl StructuralPartialEq for ApiResponseMetadataError
Auto Trait Implementations§
impl Freeze for ApiResponseMetadataError
impl RefUnwindSafe for ApiResponseMetadataError
impl Send for ApiResponseMetadataError
impl Sync for ApiResponseMetadataError
impl Unpin for ApiResponseMetadataError
impl UnsafeUnpin for ApiResponseMetadataError
impl UnwindSafe for ApiResponseMetadataError
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