pub struct OfferInput {
pub params: OfferParams,
pub request_send: Sender<ChannelRequest>,
pub server_request_recv: Receiver<ChannelServerRequest>,
}
Expand description
Input for creating a channel offer.
Fields§
§params: OfferParams
Parameters describing the offer.
request_send: Sender<ChannelRequest>
A mesh channel to send channel-related requests to.
server_request_recv: Receiver<ChannelServerRequest>
A mesh channel to receive channel-related requests to.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OfferInput
impl !RefUnwindSafe for OfferInput
impl Send for OfferInput
impl Sync for OfferInput
impl Unpin for OfferInput
impl !UnwindSafe for OfferInput
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