pub enum RevisionRejected {
CommitterNotAllowed(String, Vec<String>),
RecentCommits(i64, i64),
}Expand description
Errors that can occur when checking a revision.
Variants§
CommitterNotAllowed(String, Vec<String>)
The committer is not allowed.
RecentCommits(i64, i64)
The commit is too recent.
Auto Trait Implementations§
impl Freeze for RevisionRejected
impl RefUnwindSafe for RevisionRejected
impl Send for RevisionRejected
impl Sync for RevisionRejected
impl Unpin for RevisionRejected
impl UnsafeUnpin for RevisionRejected
impl UnwindSafe for RevisionRejected
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