pub enum Join {
Asked,
Returned,
}Expand description
How the draft and the read were joined — and therefore how much it proves.
Variants§
Asked
The id was an argument to this call: the run asked for this exact thing, by the same key the draft uses.
Returned
The id is in this call’s result: the run learned it here.
Without this, a whole shape of draft has no reviewable object at all.
A reply names its thread_id because the model was given one; a
calendar delete names an event_id it can only have got by listing
the calendar first, so the id appears in a result and in no input
before the staging call. That draft showed a reviewer an account and
an opaque id and asked them to approve deleting something.
Trait Implementations§
impl Copy for Join
impl Eq for Join
impl StructuralPartialEq for Join
Auto Trait Implementations§
impl Freeze for Join
impl RefUnwindSafe for Join
impl Send for Join
impl Sync for Join
impl Unpin for Join
impl UnsafeUnpin for Join
impl UnwindSafe for Join
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