pub struct RemoteDomainInvokeRequest {
pub remote_thread_id: i32,
pub handle: u32,
pub method_id: u32,
pub payload_buffer_id: u32,
pub input_arguments: Vec<ArgumentEntry>,
pub output_arguments: Vec<ArgumentEntry>,
}
Fields§
§remote_thread_id: i32
The remote processor thread that should handle this invocation.
handle: u32
The target handle of the invocation.
method_id: u32
The method id of the invocation.
payload_buffer_id: u32
A shared buffer that all |Argument| type entries live in. This can be 0 if there is no payload that needs it, which is the case if all the arguments are type |VmoArgument| or if there are no input or output arguments. This id comes from the |RequestPayloadBufferSet| result.
input_arguments: Vec<ArgumentEntry>
The list of input arguments for this invocation.
output_arguments: Vec<ArgumentEntry>
The list of output arguments for this invocation.
Trait Implementations§
Source§impl Debug for RemoteDomainInvokeRequest
impl Debug for RemoteDomainInvokeRequest
Source§impl Decode<RemoteDomainInvokeRequest, DefaultFuchsiaResourceDialect> for RemoteDomainInvokeRequest
impl Decode<RemoteDomainInvokeRequest, DefaultFuchsiaResourceDialect> for RemoteDomainInvokeRequest
Source§impl Encode<RemoteDomainInvokeRequest, DefaultFuchsiaResourceDialect> for &mut RemoteDomainInvokeRequest
impl Encode<RemoteDomainInvokeRequest, DefaultFuchsiaResourceDialect> for &mut RemoteDomainInvokeRequest
Source§impl<T0: Encode<i32, DefaultFuchsiaResourceDialect>, T1: Encode<u32, DefaultFuchsiaResourceDialect>, T2: Encode<u32, DefaultFuchsiaResourceDialect>, T3: Encode<u32, DefaultFuchsiaResourceDialect>, T4: Encode<UnboundedVector<ArgumentEntry>, DefaultFuchsiaResourceDialect>, T5: Encode<UnboundedVector<ArgumentEntry>, DefaultFuchsiaResourceDialect>> Encode<RemoteDomainInvokeRequest, DefaultFuchsiaResourceDialect> for (T0, T1, T2, T3, T4, T5)
impl<T0: Encode<i32, DefaultFuchsiaResourceDialect>, T1: Encode<u32, DefaultFuchsiaResourceDialect>, T2: Encode<u32, DefaultFuchsiaResourceDialect>, T3: Encode<u32, DefaultFuchsiaResourceDialect>, T4: Encode<UnboundedVector<ArgumentEntry>, DefaultFuchsiaResourceDialect>, T5: Encode<UnboundedVector<ArgumentEntry>, DefaultFuchsiaResourceDialect>> Encode<RemoteDomainInvokeRequest, DefaultFuchsiaResourceDialect> for (T0, T1, T2, T3, T4, T5)
Source§impl Hash for RemoteDomainInvokeRequest
impl Hash for RemoteDomainInvokeRequest
Source§impl Ord for RemoteDomainInvokeRequest
impl Ord for RemoteDomainInvokeRequest
Source§fn cmp(&self, other: &RemoteDomainInvokeRequest) -> Ordering
fn cmp(&self, other: &RemoteDomainInvokeRequest) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for RemoteDomainInvokeRequest
impl PartialOrd for RemoteDomainInvokeRequest
Source§impl ResourceTypeMarker for RemoteDomainInvokeRequest
impl ResourceTypeMarker for RemoteDomainInvokeRequest
Source§type Borrowed<'a> = &'a mut RemoteDomainInvokeRequest
type Borrowed<'a> = &'a mut RemoteDomainInvokeRequest
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned
. There are three cases: Read moreSource§fn take_or_borrow<'a>(
value: &'a mut <Self as TypeMarker>::Owned,
) -> Self::Borrowed<'a>
fn take_or_borrow<'a>( value: &'a mut <Self as TypeMarker>::Owned, ) -> Self::Borrowed<'a>
Cheaply converts from
&mut Self::Owned
to Self::Borrowed
. For
HandleBased
types this is “take” (it returns an owned handle and
replaces value
with Handle::invalid
), and for all other types it is
“borrow” (just converts from one reference to another).Source§impl TypeMarker for RemoteDomainInvokeRequest
impl TypeMarker for RemoteDomainInvokeRequest
Source§type Owned = RemoteDomainInvokeRequest
type Owned = RemoteDomainInvokeRequest
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.impl Eq for RemoteDomainInvokeRequest
impl Standalone<DefaultFuchsiaResourceDialect> for RemoteDomainInvokeRequest
impl StructuralPartialEq for RemoteDomainInvokeRequest
Auto Trait Implementations§
impl Freeze for RemoteDomainInvokeRequest
impl RefUnwindSafe for RemoteDomainInvokeRequest
impl Send for RemoteDomainInvokeRequest
impl Sync for RemoteDomainInvokeRequest
impl Unpin for RemoteDomainInvokeRequest
impl UnwindSafe for RemoteDomainInvokeRequest
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