pub enum ReceiverRequest {
Receive {
channel: Channel,
control_handle: ReceiverControlHandle,
},
}Expand description
A Receiver represents the receiving end of a Connector.
Variants§
Receive
Receive will be called by component manager whenever an new handle has
been given to any Connector associated with this Receiver.
Implementations§
Source§impl ReceiverRequest
impl ReceiverRequest
pub fn into_receive(self) -> Option<(Channel, ReceiverControlHandle)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReceiverRequest
impl !RefUnwindSafe for ReceiverRequest
impl Send for ReceiverRequest
impl Sync for ReceiverRequest
impl Unpin for ReceiverRequest
impl !UnwindSafe for ReceiverRequest
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