pub struct DeviceProxy { /* private fields */ }
Implementations§
Source§impl DeviceProxy
impl DeviceProxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.hardware.interconnect/Device.
Sourcepub fn take_event_stream(&self) -> DeviceEventStream
pub fn take_event_stream(&self) -> DeviceEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
pub fn set_nodes_bandwidth( &self, nodes: &[NodeBandwidth], ) -> QueryResponseFut<DeviceSetNodesBandwidthResult, DefaultFuchsiaResourceDialect>
Sourcepub fn get_node_graph(
&self,
) -> QueryResponseFut<(Vec<Node>, Vec<Edge>), DefaultFuchsiaResourceDialect>
pub fn get_node_graph( &self, ) -> QueryResponseFut<(Vec<Node>, Vec<Edge>), DefaultFuchsiaResourceDialect>
Returns a list of all nodes and edges between those nodes. Edges are directional, so if an interconnect allows bidirectional traffic, it should be listed twice, once for each direction of traffic flow. Edges must only be specified for directly adjacent nodes.
Sourcepub fn get_path_endpoints(
&self,
) -> QueryResponseFut<Vec<PathEndpoints>, DefaultFuchsiaResourceDialect>
pub fn get_path_endpoints( &self, ) -> QueryResponseFut<Vec<PathEndpoints>, DefaultFuchsiaResourceDialect>
The paths within the interconnect node graph which see bus traffic and need to have constraints applied to by drivers. Each path will have a device node instantiated for it.
Trait Implementations§
Source§impl Clone for DeviceProxy
impl Clone for DeviceProxy
Source§fn clone(&self) -> DeviceProxy
fn clone(&self) -> DeviceProxy
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeviceProxy
impl Debug for DeviceProxy
Source§impl DeviceProxyInterface for DeviceProxy
impl DeviceProxyInterface for DeviceProxy
type SetNodesBandwidthResponseFut = QueryResponseFut<Result<(), i32>>
type GetNodeGraphResponseFut = QueryResponseFut<(Vec<Node>, Vec<Edge>)>
type GetPathEndpointsResponseFut = QueryResponseFut<Vec<PathEndpoints>>
fn set_nodes_bandwidth( &self, nodes: &[NodeBandwidth], ) -> Self::SetNodesBandwidthResponseFut
fn get_node_graph(&self) -> Self::GetNodeGraphResponseFut
fn get_path_endpoints(&self) -> Self::GetPathEndpointsResponseFut
Source§impl Proxy for DeviceProxy
impl Proxy for DeviceProxy
Source§type Protocol = DeviceMarker
type Protocol = DeviceMarker
The protocol which this
Proxy
controls.Source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
Source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Attempt to convert the proxy back into a client end. Read more
Auto Trait Implementations§
impl Freeze for DeviceProxy
impl !RefUnwindSafe for DeviceProxy
impl Send for DeviceProxy
impl Sync for DeviceProxy
impl Unpin for DeviceProxy
impl !UnwindSafe for DeviceProxy
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