Struct fidl::encoding::DefaultFuchsiaResourceDialect

source ·
pub struct DefaultFuchsiaResourceDialect;
Expand description

The default ResourceDialect. Encodes everything into a channel MessageBuf for sending via channels between Fuchsia services.

Trait Implementations§

source§

impl Clone for DefaultFuchsiaResourceDialect

source§

fn clone(&self) -> DefaultFuchsiaResourceDialect

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DefaultFuchsiaResourceDialect

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DefaultFuchsiaResourceDialect

source§

fn default() -> DefaultFuchsiaResourceDialect

Returns the “default value” for a type. Read more
source§

impl HandleDispositionFor<DefaultFuchsiaResourceDialect> for HandleDisposition<'static>

source§

fn from_handle(handle: Handle, object_type: ObjectType, rights: Rights) -> Self

Wrap a handle in a handle disposition.
source§

impl HandleFor<DefaultFuchsiaResourceDialect> for Handle

§

type HandleInfo = HandleInfo

Handle info used in this dialect. Read more
source§

fn invalid() -> Self

Produce an invalid version of Handle used as a place filler when we remove handles from an array.
source§

fn is_invalid(&self) -> bool

Check whether a handle is invalid.
source§

impl HandleInfoFor<DefaultFuchsiaResourceDialect> for HandleInfo

source§

fn consume( &mut self, expected_object_type: ObjectType, expected_rights: Rights, ) -> Result<Handle>

Verifies a HandleInfo has the type and rights we expect and extracts the D::Handle from it.
source§

fn drop_in_place(&mut self)

Destroy the given handle info, leaving it invalid.
source§

impl MessageBufFor<DefaultFuchsiaResourceDialect> for MessageBufEtc

source§

fn new() -> MessageBufEtc

Create a new message buffer.
source§

fn shrink_bytes_to_fit(&mut self)

Discard any allocated-but-unused space in the byte portion of this buffer.
source§

fn split_mut(&mut self) -> (&mut Vec<u8>, &mut Vec<HandleInfo>)

Access the contents of this buffer as two vectors.
source§

impl ProxyChannelBox<DefaultFuchsiaResourceDialect> for FuchsiaProxyBox

source§

fn write_etc( &self, bytes: &[u8], handles: &mut [HandleDisposition<'static>], ) -> Result<(), Option<Status>>

Write data to a Proxy channel
source§

fn recv_etc_from( &self, ctx: &mut Context<'_>, buf: &mut MessageBufEtc, ) -> Poll<Result<(), Option<Status>>>

Receives a message on the channel and registers this Channel as needing a read on receiving a io::std::ErrorKind::WouldBlock.
source§

fn is_closed(&self) -> bool

Return whether a ProxyChannel is closed.
source§

fn unbox( self, ) -> <DefaultFuchsiaResourceDialect as ResourceDialect>::ProxyChannel

Unbox this channel
source§

fn as_channel( &self, ) -> &<DefaultFuchsiaResourceDialect as ResourceDialect>::ProxyChannel

Get a reference to the boxed channel.
source§

impl ProxyChannelFor<DefaultFuchsiaResourceDialect> for AsyncChannel

§

type Boxed = FuchsiaProxyBox

Box we put around a ProxyChannel when using it within a client.
§

type Error = Status

Type of the errors we get from this proxy channel.
§

type HandleDisposition = HandleDisposition<'static>

Handle disposition used in this dialect. Read more
source§

fn boxed(self) -> FuchsiaProxyBox

Construct a new box around a proxy channel.
source§

fn write_etc( &self, bytes: &[u8], handles: &mut [HandleDisposition<'static>], ) -> Result<(), Option<Status>>

Write data to a Proxy channel
source§

impl ResourceDialect for DefaultFuchsiaResourceDialect

§

type Handle = Handle

Handle type used in this dialect.
§

type MessageBufEtc = MessageBufEtc

Message buffer type used in this dialect.
§

type ProxyChannel = Channel

Channel type used for proxies in this dialect.
source§

fn with_tls_buf<R>(f: impl FnOnce(&mut TlsBuf<Self>) -> R) -> R

Get a thread-local common instance of TlsBuf
source§

impl Copy for DefaultFuchsiaResourceDialect

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T, D> Encode<Ambiguous1, D> for T
where D: ResourceDialect,

source§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T, D> Encode<Ambiguous2, D> for T
where D: ResourceDialect,

source§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more