pub enum Error<E: Error + 'static> {
Commit(Error),
CommitId {
id: Id,
pos: Position,
},
CommitsOutOfOrder {
id: Id,
pos: Position,
predecessor_id: Id,
},
Filename(String),
Generation {
generation: u32,
id: Id,
},
Mismatch {
actual: Id,
expected: Id,
},
Processor(E),
RootTreeId {
id: Id,
root_tree_id: Id,
},
}
Fields of CommitsOutOfOrder
[+] Show hidden undocumented itemsThe lower-level source of this error, if any. Read more
🔬 This is a nightly-only experimental API. (backtrace
)
Returns a stack backtrace, if available, of where this error occurred. Read more
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
impl<T> Conv for T
[+]
impl<T> Conv for T
[+]
impl<T> FmtForward for T
[+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
impl<T> Pipe for T where
T: ?Sized,
[+]
[+] Show hidden undocumented itemspub fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
[−]
Pipes by value. This is generally the method you want to use. Read more
pub fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
[−]
Borrows self
and passes that borrow into the pipe function. Read more
pub fn pipe_ref_mut<'a, R>(
&'a mut self,
func: impl FnOnce(&'a mut Self) -> R
) -> R where
R: 'a,
[−]
Mutably borrows self
and passes that borrow into the pipe function. Read more
pub fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
[−]
Borrows self
, then passes self.borrow()
into the pipe function. Read more
pub fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
[−]
Mutably borrows self
, then passes self.borrow_mut()
into the pipe
function. Read more
pub fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
R: 'a,
U: 'a + ?Sized,
[−]
Borrows self
, then passes self.as_ref()
into the pipe function.
pub fn pipe_as_mut<'a, U, R>(
&'a mut self,
func: impl FnOnce(&'a mut U) -> R
) -> R where
Self: AsMut<U>,
R: 'a,
U: 'a + ?Sized,
[−]
Mutably borrows self
, then passes self.as_mut()
into the pipe
function. Read more
pub fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
[−]
Borrows self
, then passes self.deref()
into the pipe function.
pub fn pipe_deref_mut<'a, T, R>(
&'a mut self,
func: impl FnOnce(&'a mut T) -> R
) -> R where
Self: DerefMut<Target = T> + Deref,
T: 'a + ?Sized,
R: 'a,
[−]
Mutably borrows self
, then passes self.deref_mut()
into the pipe
function. Read more
impl<T> Pipe for T
[+]
impl<T> PipeAsRef for T
[+]
[+] Show hidden undocumented itemspub fn pipe_as_ref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: AsRef<T>,
T: 'a,
R: 'a,
[−]
Pipes a trait borrow into a function that cannot normally be called in
suffix position. Read more
pub fn pipe_as_mut<'a, T, R>(
&'a mut self,
func: impl FnOnce(&'a mut T) -> R
) -> R where
Self: AsMut<T>,
T: 'a,
R: 'a,
[−]
Pipes a trait mutable borrow into a function that cannot normally be
called in suffix position. Read more
impl<T> PipeBorrow for T
[+]
[+] Show hidden undocumented itemspub fn pipe_borrow<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Borrow<T>,
T: 'a,
R: 'a,
[−]
Pipes a trait borrow into a function that cannot normally be called in
suffix position. Read more
pub fn pipe_borrow_mut<'a, T, R>(
&'a mut self,
func: impl FnOnce(&'a mut T) -> R
) -> R where
Self: BorrowMut<T>,
T: 'a,
R: 'a,
[−]
Pipes a trait mutable borrow into a function that cannot normally be
called in suffix position. Read more
impl<T> PipeDeref for T
[+]
impl<T> PipeRef for T
[+]
impl<T> Tap for T
[+]
[+] Show hidden undocumented itemspub fn tap(self, func: impl FnOnce(&Self)) -> Self
[−]
pub fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self
[−]
pub fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
[−]
Immutable access to the Borrow<B>
of a value. Read more
Mutable access to the BorrowMut<B>
of a value. Read more
pub fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
[−]
Immutable access to the AsRef<R>
view of a value. Read more
Mutable access to the AsMut<R>
view of a value. Read more
pub fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
[−]
Immutable access to the Deref::Target
of a value. Read more
Mutable access to the Deref::Target
of a value. Read more
pub fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
[−]
Calls .tap()
only in debug builds, and is erased in release builds.
Calls .tap_mut()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_borrow()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_borrow_mut()
only in debug builds, and is erased in release
builds. Read more
pub fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
[−]
Calls .tap_ref()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_ref_mut()
only in debug builds, and is erased in release
builds. Read more
pub fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
[−]
Calls .tap_deref()
only in debug builds, and is erased in release
builds. Read more
Calls .tap_deref_mut()
only in debug builds, and is erased in release
builds. Read more
impl<T> Tap for T
[+]
[+] Show hidden undocumented itemspub fn tap<F, R>(self, func: F) -> Self where
F: FnOnce(&Self) -> R,
[−]
Provides immutable access for inspection. Read more
pub fn tap_dbg<F, R>(self, func: F) -> Self where
F: FnOnce(&Self) -> R,
[−]
Calls tap
in debug builds, and does nothing in release builds.
pub fn tap_mut<F, R>(self, func: F) -> Self where
F: FnOnce(&mut Self) -> R,
[−]
Provides mutable access for modification. Read more
pub fn tap_mut_dbg<F, R>(self, func: F) -> Self where
F: FnOnce(&mut Self) -> R,
[−]
Calls tap_mut
in debug builds, and does nothing in release builds.
impl<T, U> TapAsRef<U> for T where
U: ?Sized,
[+]
[+] Show hidden undocumented itemspub fn tap_ref<F, R>(self, func: F) -> Self where
Self: AsRef<T>,
F: FnOnce(&T) -> R,
[−]
Provides immutable access to the reference for inspection.
pub fn tap_ref_dbg<F, R>(self, func: F) -> Self where
Self: AsRef<T>,
F: FnOnce(&T) -> R,
[−]
Calls tap_ref
in debug builds, and does nothing in release builds.
pub fn tap_ref_mut<F, R>(self, func: F) -> Self where
Self: AsMut<T>,
F: FnOnce(&mut T) -> R,
[−]
Provides mutable access to the reference for modification.
pub fn tap_ref_mut_dbg<F, R>(self, func: F) -> Self where
Self: AsMut<T>,
F: FnOnce(&mut T) -> R,
[−]
Calls tap_ref_mut
in debug builds, and does nothing in release builds.
impl<T, U> TapBorrow<U> for T where
U: ?Sized,
[+]
[+] Show hidden undocumented itemspub fn tap_borrow<F, R>(self, func: F) -> Self where
Self: Borrow<T>,
F: FnOnce(&T) -> R,
[−]
Provides immutable access to the borrow for inspection. Read more
pub fn tap_borrow_dbg<F, R>(self, func: F) -> Self where
Self: Borrow<T>,
F: FnOnce(&T) -> R,
[−]
Calls tap_borrow
in debug builds, and does nothing in release builds.
Provides mutable access to the borrow for modification.
Calls tap_borrow_mut
in debug builds, and does nothing in release
builds. Read more
impl<T> TapDeref for T
[+]
[+] Show hidden undocumented itemspub fn tap_deref<F, R>(self, func: F) -> Self where
Self: Deref,
F: FnOnce(&Self::Target) -> R,
[−]
Immutably dereferences self
for inspection.
pub fn tap_deref_dbg<F, R>(self, func: F) -> Self where
Self: Deref,
F: FnOnce(&Self::Target) -> R,
[−]
Calls tap_deref
in debug builds, and does nothing in release builds.
pub fn tap_deref_mut<F, R>(self, func: F) -> Self where
Self: DerefMut,
F: FnOnce(&mut Self::Target) -> R,
[−]
Mutably dereferences self
for modification.
Calls tap_deref_mut
in debug builds, and does nothing in release
builds. Read more
impl<T> TryConv for T
[+]
impl<T> TryConv for T
[+]