pub struct OfferResolver {
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 capability offered by a component to one of its children, which may have been offered by the component’s containing realm, the component itself, or one of its other children.
Fields§
§source: Option<Ref>(Required) The provider of the capability relative to the component
itself. Must be parent, self, child, or void.
If set to void, then the target must offer or use the capability with
OPTIONAL or TRANSITIONAL availability.
source_name: Option<String>(Required) Name of the resolver being offered.
target: Option<Ref>(Required) Reference to the target. Must be child, collection, or
a dictionary capability.
target_name: Option<String>(Required) Name under which the capability is being offered.
source_dictionary: Option<String>(Optional) Path in a dictionary provided by source 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 this
dictionary.
Trait Implementations§
Source§impl Clone for OfferResolver
impl Clone for OfferResolver
Source§fn clone(&self) -> OfferResolver
fn clone(&self) -> OfferResolver
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OfferResolver
impl Debug for OfferResolver
Source§impl<D> Decode<OfferResolver, D> for OfferResolverwhere
D: ResourceDialect,
impl<D> Decode<OfferResolver, D> for OfferResolverwhere
D: ResourceDialect,
Source§fn new_empty() -> OfferResolver
fn new_empty() -> OfferResolver
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl Default for OfferResolver
impl Default for OfferResolver
Source§fn default() -> OfferResolver
fn default() -> OfferResolver
Source§impl<D> Encode<OfferResolver, D> for &OfferResolverwhere
D: ResourceDialect,
impl<D> Encode<OfferResolver, D> for &OfferResolverwhere
D: ResourceDialect,
Source§impl PartialEq for OfferResolver
impl PartialEq for OfferResolver
Source§impl TypeMarker for OfferResolver
impl TypeMarker for OfferResolver
Source§type Owned = OfferResolver
type Owned = OfferResolver
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.Source§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 moreSource§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 OfferResolver
impl ValueTypeMarker for OfferResolver
Source§type Borrowed<'a> = &'a OfferResolver
type Borrowed<'a> = &'a OfferResolver
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
value: &<OfferResolver as TypeMarker>::Owned,
) -> <OfferResolver as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<OfferResolver as TypeMarker>::Owned, ) -> <OfferResolver as ValueTypeMarker>::Borrowed<'_>
&Self::Owned to Self::Borrowed.