pub struct Captures {
pub found: BTreeMap<String, String>,
pub missing: Vec<String>,
}Expand description
What an action’s stdout yielded against the names it declared.
Fields§
§found: BTreeMap<String, String>§missing: Vec<String>Declared names that stdout did not contain. Reported rather than
silently dropped: a capture that never appears is almost always a bug
in the command — most often noisy output on stdout, which belongs to
newgit when captures is set — and the resource is otherwise marked
ready with an empty handle nobody notices until something 401s.
Trait Implementations§
impl Eq for Captures
impl StructuralPartialEq for Captures
Auto Trait Implementations§
impl Freeze for Captures
impl RefUnwindSafe for Captures
impl Send for Captures
impl Sync for Captures
impl Unpin for Captures
impl UnsafeUnpin for Captures
impl UnwindSafe for Captures
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