pub enum LutexControllerRequest {
WaitBitset {
payload: WaitBitsetRequest,
responder: LutexControllerWaitBitsetResponder,
},
WakeBitset {
payload: WakeBitsetRequest,
responder: LutexControllerWakeBitsetResponder,
},
_UnknownMethod {
ordinal: u64,
control_handle: LutexControllerControlHandle,
method_type: MethodType,
},
}
Expand description
Protocol that allows a Fuchsia component to interact with the Linux futexes of a process running inside starnix.
Variants§
WaitBitset
FUTEX_WAIT_BITSET command
WakeBitset
FUTEX_WAKE_BITSET command
_UnknownMethod
An interaction was received which does not match any known method.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
§
control_handle: LutexControllerControlHandle
§
method_type: MethodType
Implementations§
Source§impl LutexControllerRequest
impl LutexControllerRequest
pub fn into_wait_bitset( self, ) -> Option<(WaitBitsetRequest, LutexControllerWaitBitsetResponder)>
pub fn into_wake_bitset( self, ) -> Option<(WakeBitsetRequest, LutexControllerWakeBitsetResponder)>
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 LutexControllerRequest
impl !RefUnwindSafe for LutexControllerRequest
impl Send for LutexControllerRequest
impl Sync for LutexControllerRequest
impl Unpin for LutexControllerRequest
impl !UnwindSafe for LutexControllerRequest
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