pub struct DeliveryRequest<'a> {
pub session: &'a SessionId,
pub cwd: &'a str,
pub slice_key: &'a str,
pub complete: bool,
}Expand description
One emission decision request. complete states whether THIS
emission will carry the slice in full — a truncated emission is
never recorded as delivered (the agent never saw it).
Fields§
§session: &'a SessionId§cwd: &'a str§slice_key: &'a str§complete: boolTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DeliveryRequest<'a>
impl<'a> RefUnwindSafe for DeliveryRequest<'a>
impl<'a> Send for DeliveryRequest<'a>
impl<'a> Sync for DeliveryRequest<'a>
impl<'a> Unpin for DeliveryRequest<'a>
impl<'a> UnsafeUnpin for DeliveryRequest<'a>
impl<'a> UnwindSafe for DeliveryRequest<'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