pub enum Forwarded {
No,
NotNeeded,
Yes(Cow<'static, str>),
}Expand description
Whether the patch has been forwarded to the upstream project.
Variants§
No
The patch has not been forwarded to the upstream project.
NotNeeded
The patch does not need to be forwarded to the upstream project.
Yes(Cow<'static, str>)
The patch has been forwarded to the upstream project, and the value provides some reference to the forwarded patch.
Trait Implementations§
impl Eq for Forwarded
impl StructuralPartialEq for Forwarded
Auto Trait Implementations§
impl Freeze for Forwarded
impl RefUnwindSafe for Forwarded
impl Send for Forwarded
impl Sync for Forwarded
impl Unpin for Forwarded
impl UnwindSafe for Forwarded
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