Enum git2::TreeWalkResult [−][src]
#[repr(i32)]
pub enum TreeWalkResult {
Ok,
Skip,
Abort,
}
Expand description
Possible return codes for tree walking callback functions.
Variants
Continue with the traversal as normal.
Skip the current node (in pre-order mode).
Completely stop the traversal.