Struct fidl_fuchsia_settings::FactoryResetProxy
source · pub struct FactoryResetProxy { /* private fields */ }
Implementations§
source§impl FactoryResetProxy
impl FactoryResetProxy
sourcepub fn take_event_stream(&self) -> FactoryResetEventStream
pub fn take_event_stream(&self) -> FactoryResetEventStream
Get a Stream of events from the remote end of the FactoryReset protocol
Panics
Panics if the event stream was already taken.
sourcepub fn watch(&self) -> QueryResponseFut<FactoryResetSettings>
pub fn watch(&self) -> QueryResponseFut<FactoryResetSettings>
Notifies of a change in information about the factory reset settings.
On a given connection, the first call will return the current settings
value while subsequent calls will only return the new settings
value
upon a value change. This follows the hanging get pattern.
If this call fails, it is considered a fatal error and the channel will be closed.
sourcepub fn set(
&self,
settings: FactoryResetSettings
) -> QueryResponseFut<FactoryResetSetResult>
pub fn set( &self, settings: FactoryResetSettings ) -> QueryResponseFut<FactoryResetSetResult>
Sets factory reset settings. Any field not explicitly set in the table performs a no-op, and will not make any changes.
Trait Implementations§
source§impl Clone for FactoryResetProxy
impl Clone for FactoryResetProxy
source§fn clone(&self) -> FactoryResetProxy
fn clone(&self) -> FactoryResetProxy
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 FactoryResetProxy
impl Debug for FactoryResetProxy
source§impl FactoryResetProxyInterface for FactoryResetProxy
impl FactoryResetProxyInterface for FactoryResetProxy
type WatchResponseFut = QueryResponseFut<FactoryResetSettings>
fn watch(&self) -> Self::WatchResponseFut
type SetResponseFut = QueryResponseFut<Result<(), Error>>
fn set(&self, settings: FactoryResetSettings) -> Self::SetResponseFut
source§impl Proxy for FactoryResetProxy
impl Proxy for FactoryResetProxy
§type Protocol = FactoryResetMarker
type Protocol = FactoryResetMarker
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