#[repr(u32)]pub enum ProfileMetadataError {
URITooLong = 0,
}
Variants§
URITooLong = 0
Implementations§
Trait Implementations§
Source§impl Clone for ProfileMetadataError
impl Clone for ProfileMetadataError
Source§fn clone(&self) -> ProfileMetadataError
fn clone(&self) -> ProfileMetadataError
Returns a copy of the value. Read more
1.0.0 · 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 ProfileMetadataError
impl Debug for ProfileMetadataError
Source§impl Display for ProfileMetadataError
impl Display for ProfileMetadataError
Source§impl From<ProfileMetadataError> for Error
impl From<ProfileMetadataError> for Error
Source§fn from(error_code: ProfileMetadataError) -> Error
fn from(error_code: ProfileMetadataError) -> Error
Converts to this type from the input type.
Source§impl From<ProfileMetadataError> for u32
impl From<ProfileMetadataError> for u32
Source§fn from(e: ProfileMetadataError) -> u32
fn from(e: ProfileMetadataError) -> u32
Converts to this type from the input type.
impl Copy for ProfileMetadataError
Auto Trait Implementations§
impl Freeze for ProfileMetadataError
impl RefUnwindSafe for ProfileMetadataError
impl Send for ProfileMetadataError
impl Sync for ProfileMetadataError
impl Unpin for ProfileMetadataError
impl UnwindSafe for ProfileMetadataError
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more