pub enum SendHandleProtocolRequest {
SendHandleReducedRights {
h: Event,
control_handle: SendHandleProtocolControlHandle,
},
SendHandleSameRights {
h: Event,
control_handle: SendHandleProtocolControlHandle,
},
}
Variants§
Implementations§
Source§impl SendHandleProtocolRequest
impl SendHandleProtocolRequest
pub fn into_send_handle_reduced_rights( self, ) -> Option<(Event, SendHandleProtocolControlHandle)>
pub fn into_send_handle_same_rights( self, ) -> Option<(Event, SendHandleProtocolControlHandle)>
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 SendHandleProtocolRequest
impl !RefUnwindSafe for SendHandleProtocolRequest
impl Send for SendHandleProtocolRequest
impl Sync for SendHandleProtocolRequest
impl Unpin for SendHandleProtocolRequest
impl !UnwindSafe for SendHandleProtocolRequest
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