pub enum NodeTokenRequest {
Get {
responder: NodeTokenGetResponder,
},
}Expand description
A protocol that is meant to be composed into other protocols to allow driver
clients to query the node token associated with the driver. This token can be
exchanged with the driver framework via protocols such as
fuchsia.driver.token/NodeBusTopology.Get to learn more information about the
node.
Variants§
Get
Fields
§
responder: NodeTokenGetResponderImplementations§
Source§impl NodeTokenRequest
impl NodeTokenRequest
pub fn into_get(self) -> Option<NodeTokenGetResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeTokenRequest
impl !RefUnwindSafe for NodeTokenRequest
impl Send for NodeTokenRequest
impl Sync for NodeTokenRequest
impl Unpin for NodeTokenRequest
impl UnsafeUnpin for NodeTokenRequest
impl !UnwindSafe for NodeTokenRequest
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