pub struct OfferInfo {
pub offer: OfferChannel,
pub request_send: Sender<ChannelRequest>,
pub revoke_recv: OneshotReceiver<()>,
}
Expand description
Provides the offer details from the server in addition to both a channel to request client actions and a channel to receive server responses.
Fields§
§offer: OfferChannel
§request_send: Sender<ChannelRequest>
§revoke_recv: OneshotReceiver<()>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OfferInfo
impl !RefUnwindSafe for OfferInfo
impl Send for OfferInfo
impl Sync for OfferInfo
impl Unpin for OfferInfo
impl !UnwindSafe for OfferInfo
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