pub struct ExposeResolver {
pub source: Option<Ref>,
pub source_name: Option<String>,
pub target: Option<Ref>,
pub target_name: Option<String>,
pub source_dictionary: Option<String>,
/* private fields */
}
Expand description
Declares a resolver exposed to a component’s containing realm, such as a resolver exposed by the component or one of its children at runtime.
Fields§
§source: Option<Ref>
(Required) The provider of the capability relative to the component
itself. Must be self
or child
.
source_name: Option<String>
(Required) The name of the resolver, by which it was presented to this component.
target: Option<Ref>
(Required) The destination to which the resolver is exposed
target_name: Option<String>
(Required) The name by which the capability is being exposed.
source_dictionary: Option<String>
(Optional) Path in a dictionary offered by ref
which contains source_name
.
If this field is absent, source_name
identifies a capability directly routed
by source
. If set, source_name
identifies a capability nested inside a
dictionary. The name of the top-level dictionary is given by the first path
segment of source_dictionary
, and source
is expected to route a
dictionary capability with this name. The rest of the path (possibly empty)
represents the path to a dictionary nested in the top-level dictionary which
is expected to contain source_name
.
Trait Implementations§
source§impl Clone for ExposeResolver
impl Clone for ExposeResolver
source§fn clone(&self) -> ExposeResolver
fn clone(&self) -> ExposeResolver
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExposeResolver
impl Debug for ExposeResolver
source§impl<D: ResourceDialect> Decode<ExposeResolver, D> for ExposeResolver
impl<D: ResourceDialect> Decode<ExposeResolver, D> for ExposeResolver
source§impl Default for ExposeResolver
impl Default for ExposeResolver
source§fn default() -> ExposeResolver
fn default() -> ExposeResolver
source§impl<D: ResourceDialect> Encode<ExposeResolver, D> for &ExposeResolver
impl<D: ResourceDialect> Encode<ExposeResolver, D> for &ExposeResolver
source§impl PartialEq for ExposeResolver
impl PartialEq for ExposeResolver
source§fn eq(&self, other: &ExposeResolver) -> bool
fn eq(&self, other: &ExposeResolver) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl TypeMarker for ExposeResolver
impl TypeMarker for ExposeResolver
§type Owned = ExposeResolver
type Owned = ExposeResolver
source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
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
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.source§impl ValueTypeMarker for ExposeResolver
impl ValueTypeMarker for ExposeResolver
§type Borrowed<'a> = &'a ExposeResolver
type Borrowed<'a> = &'a ExposeResolver
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for ExposeResolver
impl StructuralPartialEq for ExposeResolver
Auto Trait Implementations§
impl Freeze for ExposeResolver
impl RefUnwindSafe for ExposeResolver
impl Send for ExposeResolver
impl Sync for ExposeResolver
impl Unpin for ExposeResolver
impl UnwindSafe for ExposeResolver
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)