pub enum Offer {
Service(OfferService),
Protocol(OfferProtocol),
Directory(OfferDirectory),
Storage(OfferStorage),
Runner(OfferRunner),
Resolver(OfferResolver),
EventStream(OfferEventStream),
Dictionary(OfferDictionary),
Config(OfferConfiguration),
// some variants omitted
}
Expand description
Declares a 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.
Variants§
Service(OfferService)
Protocol(OfferProtocol)
Directory(OfferDirectory)
Storage(OfferStorage)
Runner(OfferRunner)
Resolver(OfferResolver)
EventStream(OfferEventStream)
Dictionary(OfferDictionary)
Config(OfferConfiguration)
Implementations§
Trait Implementations§
source§impl<D: ResourceDialect> Decode<Offer, D> for Offer
impl<D: ResourceDialect> Decode<Offer, D> for Offer
source§impl PartialEq for Offer
impl PartialEq for Offer
source§impl TypeMarker for Offer
impl TypeMarker for Offer
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.source§impl ValueTypeMarker for Offer
impl ValueTypeMarker for Offer
impl Persistable for Offer
Auto Trait Implementations§
impl Freeze for Offer
impl RefUnwindSafe for Offer
impl Send for Offer
impl Sync for Offer
impl Unpin for Offer
impl UnwindSafe for Offer
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)