Enum changesets::BuildVersioningError
source · pub enum BuildVersioningError {
EmptyVersioningError,
}
Expand description
The error that occurs if you try to create a Versioning
out of an iterator which has no items.
Variants§
EmptyVersioningError
The iterator was empty.
Trait Implementations§
source§impl Clone for BuildVersioningError
impl Clone for BuildVersioningError
source§fn clone(&self) -> BuildVersioningError
fn clone(&self) -> BuildVersioningError
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 BuildVersioningError
impl Debug for BuildVersioningError
source§impl Display for BuildVersioningError
impl Display for BuildVersioningError
source§impl Error for BuildVersioningError
impl Error for BuildVersioningError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<BuildVersioningError> for ParsingError
impl From<BuildVersioningError> for ParsingError
source§fn from(err: BuildVersioningError) -> Self
fn from(err: BuildVersioningError) -> Self
Converts to this type from the input type.
source§impl From<Infallible> for BuildVersioningError
impl From<Infallible> for BuildVersioningError
source§fn from(_: Infallible) -> Self
fn from(_: Infallible) -> Self
Converts to this type from the input type.
source§impl PartialEq for BuildVersioningError
impl PartialEq for BuildVersioningError
source§fn eq(&self, other: &BuildVersioningError) -> bool
fn eq(&self, other: &BuildVersioningError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BuildVersioningError
impl Eq for BuildVersioningError
impl StructuralPartialEq for BuildVersioningError
Auto Trait Implementations§
impl Freeze for BuildVersioningError
impl RefUnwindSafe for BuildVersioningError
impl Send for BuildVersioningError
impl Sync for BuildVersioningError
impl Unpin for BuildVersioningError
impl UnwindSafe for BuildVersioningError
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