Struct asyncgit::remote_tags::AsyncRemoteTagsJob [−][src]
pub struct AsyncRemoteTagsJob { /* fields omitted */ }
Expand description
Implementations
Trait Implementations
type Notification = AsyncGitNotification
type Notification = AsyncGitNotification
defines what notification type is used to communicate outside
fn run(
&mut self,
_params: RunParams<Self::Notification, Self::Progress>
) -> Result<Self::Notification>
fn run(
&mut self,
_params: RunParams<Self::Notification, Self::Progress>
) -> Result<Self::Notification>
can run a synchronous time intensive task.
the returned notification is used to tell interested parties
that the job finished and the job can be access via take_last
.
prior to this final notification it is not safe to assume take_last
will already return the correct job Read more
allows observers to get intermediate progress status if the job customizes it
by default this will be returning Self::Progress::default()
Read more
Auto Trait Implementations
impl RefUnwindSafe for AsyncRemoteTagsJob
impl Send for AsyncRemoteTagsJob
impl Sync for AsyncRemoteTagsJob
impl Unpin for AsyncRemoteTagsJob
impl UnwindSafe for AsyncRemoteTagsJob
Blanket Implementations
Mutably borrows from an owned value. Read more
Cast to integer, truncating Read more
Cast to the nearest integer Read more
Cast the floor to an integer Read more
Try converting to integer with truncation Read more
Try converting to the nearest integer Read more
Try converting the floor to an integer Read more
Try convert the ceiling to an integer Read more