pub struct PowerTokenServiceProxy(/* private fields */);
Implementations§
Source§impl PowerTokenServiceProxy
impl PowerTokenServiceProxy
pub fn connect_to_token_provider( &self, ) -> Result<PowerTokenProviderProxy, Error>
Sourcepub fn connect_to_token_provider_sync(
&self,
) -> Result<PowerTokenProviderSynchronousProxy, Error>
pub fn connect_to_token_provider_sync( &self, ) -> Result<PowerTokenProviderSynchronousProxy, Error>
Like connect_to_token_provider
, but returns a sync proxy.
See Self::connect_to_token_provider
for more details.
Sourcepub fn connect_channel_to_token_provider(
&self,
server_end: ServerEnd<PowerTokenProviderMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_token_provider( &self, server_end: ServerEnd<PowerTokenProviderMarker>, ) -> Result<(), Error>
Like connect_to_token_provider
, but accepts a server end.
See Self::connect_to_token_provider
for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for PowerTokenServiceProxy
impl ServiceProxy for PowerTokenServiceProxy
Source§type Service = PowerTokenServiceMarker
type Service = PowerTokenServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for PowerTokenServiceProxy
impl !RefUnwindSafe for PowerTokenServiceProxy
impl Send for PowerTokenServiceProxy
impl Sync for PowerTokenServiceProxy
impl Unpin for PowerTokenServiceProxy
impl !UnwindSafe for PowerTokenServiceProxy
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