pub struct Mining<'a> {
pub workspace: &'a str,
pub job: &'a str,
pub when: &'a str,
pub wall: &'a BTreeSet<String>,
pub transcript: Option<&'a str>,
}Expand description
What a proposal is being mined out of.
Fields§
§workspace: &'a strThe workspace the claim belongs to.
job: &'a strThe cheap-model job asking.
when: &'a strWhere in the cycle it is asking.
wall: &'a BTreeSet<String>Everything already in the splice.
transcript: Option<&'a str>What was actually said, if the caller has it.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Mining<'a>
impl<'a> RefUnwindSafe for Mining<'a>
impl<'a> Send for Mining<'a>
impl<'a> Sync for Mining<'a>
impl<'a> Unpin for Mining<'a>
impl<'a> UnsafeUnpin for Mining<'a>
impl<'a> UnwindSafe for Mining<'a>
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