pub struct NodeAddArgs {
pub name: Option<String>,
pub offers: Option<Vec<Offer>>,
pub symbols: Option<Vec<NodeSymbol>>,
pub properties: Option<Vec<NodeProperty>>,
pub devfs_args: Option<DevfsAddArgs>,
pub offers2: Option<Vec<Offer>>,
pub bus_info: Option<BusInfo>,
/* private fields */
}
Expand description
Arguments for adding a node.
Fields§
§name: Option<String>
Name of the node.
offers: Option<Vec<Offer>>
Capabilities to offer to the driver that is bound to this node. The driver must ensure these capabilities are added to its outgoing directory before adding the child node.
symbols: Option<Vec<NodeSymbol>>
Functions to provide to the driver that is bound to this node.
properties: Option<Vec<NodeProperty>>
Properties of the node.
devfs_args: Option<DevfsAddArgs>
The arguments for how this node should be added to devfs.
offers2: Option<Vec<Offer>>
Capabilities to offer to the driver that is bound to this node. The driver must ensure these capabilities are added to its outgoing directory before adding the child node.
bus_info: Option<BusInfo>
Information that feeds into a structured bus topology for the device. It should only be specified by bus drivers, ideally those which are included by default.
Trait Implementations§
Source§impl Debug for NodeAddArgs
impl Debug for NodeAddArgs
Source§impl Decode<NodeAddArgs, DefaultFuchsiaResourceDialect> for NodeAddArgs
impl Decode<NodeAddArgs, DefaultFuchsiaResourceDialect> for NodeAddArgs
Source§impl Default for NodeAddArgs
impl Default for NodeAddArgs
Source§fn default() -> NodeAddArgs
fn default() -> NodeAddArgs
Returns the “default value” for a type. Read more
Source§impl Encode<NodeAddArgs, DefaultFuchsiaResourceDialect> for &mut NodeAddArgs
impl Encode<NodeAddArgs, DefaultFuchsiaResourceDialect> for &mut NodeAddArgs
Source§impl PartialEq for NodeAddArgs
impl PartialEq for NodeAddArgs
Source§impl ResourceTypeMarker for NodeAddArgs
impl ResourceTypeMarker for NodeAddArgs
Source§type Borrowed<'a> = &'a mut NodeAddArgs
type Borrowed<'a> = &'a mut NodeAddArgs
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned
. There are three cases: Read moreSource§fn take_or_borrow<'a>(
value: &'a mut <Self as TypeMarker>::Owned,
) -> Self::Borrowed<'a>
fn take_or_borrow<'a>( value: &'a mut <Self as TypeMarker>::Owned, ) -> Self::Borrowed<'a>
Cheaply converts from
&mut Self::Owned
to Self::Borrowed
. For
HandleBased
types this is “take” (it returns an owned handle and
replaces value
with Handle::invalid
), and for all other types it is
“borrow” (just converts from one reference to another).Source§impl TypeMarker for NodeAddArgs
impl TypeMarker for NodeAddArgs
Source§type Owned = NodeAddArgs
type Owned = NodeAddArgs
The owned Rust type which this FIDL type decodes into.
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.impl Standalone<DefaultFuchsiaResourceDialect> for NodeAddArgs
impl StructuralPartialEq for NodeAddArgs
Auto Trait Implementations§
impl Freeze for NodeAddArgs
impl RefUnwindSafe for NodeAddArgs
impl Send for NodeAddArgs
impl Sync for NodeAddArgs
impl Unpin for NodeAddArgs
impl UnwindSafe for NodeAddArgs
Blanket Implementations§
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