pub struct ConfigServiceProxy(/* private fields */);Implementations§
Source§impl ConfigServiceProxy
impl ConfigServiceProxy
pub fn connect_to_puppet(&self) -> Result<ConfigReceiverPuppetProxy, Error>
Sourcepub fn connect_to_puppet_sync(
&self,
) -> Result<ConfigReceiverPuppetSynchronousProxy, Error>
pub fn connect_to_puppet_sync( &self, ) -> Result<ConfigReceiverPuppetSynchronousProxy, Error>
Like connect_to_puppet, but returns a sync proxy.
See Self::connect_to_puppet for more details.
Sourcepub fn connect_channel_to_puppet(
&self,
server_end: ServerEnd<ConfigReceiverPuppetMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_puppet( &self, server_end: ServerEnd<ConfigReceiverPuppetMarker>, ) -> Result<(), Error>
Like connect_to_puppet, but accepts a server end.
See Self::connect_to_puppet for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for ConfigServiceProxy
Available on Fuchsia only.
impl ServiceProxy for ConfigServiceProxy
Available on Fuchsia only.
Source§type Service = ConfigServiceMarker
type Service = ConfigServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for ConfigServiceProxy
impl !RefUnwindSafe for ConfigServiceProxy
impl Send for ConfigServiceProxy
impl Sync for ConfigServiceProxy
impl Unpin for ConfigServiceProxy
impl !UnwindSafe for ConfigServiceProxy
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