Enum asyncgit::AsyncGitNotification
source · [−]pub enum AsyncGitNotification {
Show 13 variants
FinishUnchanged,
Status,
Diff,
Log,
FileLog,
CommitFiles,
Tags,
Push,
PushTags,
Pull,
Blame,
RemoteTags,
Fetch,
}
Expand description
this type is used to communicate events back through the channel
Variants
FinishUnchanged
this indicates that no new state was fetched but that a async process finished
Status
Diff
Log
FileLog
CommitFiles
Tags
Push
PushTags
Pull
Blame
RemoteTags
Fetch
Trait Implementations
sourceimpl Clone for AsyncGitNotification
impl Clone for AsyncGitNotification
sourcefn clone(&self) -> AsyncGitNotification
fn clone(&self) -> AsyncGitNotification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AsyncGitNotification
impl Debug for AsyncGitNotification
impl Copy for AsyncGitNotification
impl Eq for AsyncGitNotification
impl StructuralEq for AsyncGitNotification
impl StructuralPartialEq for AsyncGitNotification
Auto Trait Implementations
impl RefUnwindSafe for AsyncGitNotification
impl Send for AsyncGitNotification
impl Sync for AsyncGitNotification
impl Unpin for AsyncGitNotification
impl UnwindSafe for AsyncGitNotification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> CastFloat<T> for S where
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for S where
T: ConvFloat<S>,
sourcefn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
sourcefn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
sourcefn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
sourcefn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
sourcefn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
sourcefn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
sourcefn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more