Struct fidl_fuchsia_component_decl::OfferRunner
source · pub struct OfferRunner {
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 runner 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 runner 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 OfferRunner
impl Clone for OfferRunner
source§fn clone(&self) -> OfferRunner
fn clone(&self) -> OfferRunner
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OfferRunner
impl Debug for OfferRunner
source§impl<D: ResourceDialect> Decode<OfferRunner, D> for OfferRunner
impl<D: ResourceDialect> Decode<OfferRunner, D> for OfferRunner
source§impl Default for OfferRunner
impl Default for OfferRunner
source§fn default() -> OfferRunner
fn default() -> OfferRunner
source§impl<D: ResourceDialect> Encode<OfferRunner, D> for &OfferRunner
impl<D: ResourceDialect> Encode<OfferRunner, D> for &OfferRunner
source§impl PartialEq for OfferRunner
impl PartialEq for OfferRunner
source§fn eq(&self, other: &OfferRunner) -> bool
fn eq(&self, other: &OfferRunner) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl TypeMarker for OfferRunner
impl TypeMarker for OfferRunner
§type Owned = OfferRunner
type Owned = OfferRunner
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 OfferRunner
impl ValueTypeMarker for OfferRunner
§type Borrowed<'a> = &'a OfferRunner
type Borrowed<'a> = &'a OfferRunner
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for OfferRunner
impl StructuralPartialEq for OfferRunner
Auto Trait Implementations§
impl Freeze for OfferRunner
impl RefUnwindSafe for OfferRunner
impl Send for OfferRunner
impl Sync for OfferRunner
impl Unpin for OfferRunner
impl UnwindSafe for OfferRunner
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
)