Struct fidl_fuchsia_settings::DoNotDisturbProxy
source · pub struct DoNotDisturbProxy { /* private fields */ }
Implementations§
source§impl DoNotDisturbProxy
impl DoNotDisturbProxy
sourcepub fn take_event_stream(&self) -> DoNotDisturbEventStream
pub fn take_event_stream(&self) -> DoNotDisturbEventStream
Get a Stream of events from the remote end of the DoNotDisturb protocol
Panics
Panics if the event stream was already taken.
sourcepub fn watch(&self) -> QueryResponseFut<DoNotDisturbSettings>
pub fn watch(&self) -> QueryResponseFut<DoNotDisturbSettings>
Gets the current DoNotDisturbSettings
. Returns immediately on first
call; subsequent calls return when the values change.
If this call fails, it is considered a fatal error and the channel will be closed.
sourcepub fn set(
&self,
settings: DoNotDisturbSettings
) -> QueryResponseFut<DoNotDisturbSetResult>
pub fn set( &self, settings: DoNotDisturbSettings ) -> QueryResponseFut<DoNotDisturbSetResult>
Sets DoNotDisturbSettings
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 DoNotDisturbProxy
impl Clone for DoNotDisturbProxy
source§fn clone(&self) -> DoNotDisturbProxy
fn clone(&self) -> DoNotDisturbProxy
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 DoNotDisturbProxy
impl Debug for DoNotDisturbProxy
source§impl DoNotDisturbProxyInterface for DoNotDisturbProxy
impl DoNotDisturbProxyInterface for DoNotDisturbProxy
type WatchResponseFut = QueryResponseFut<DoNotDisturbSettings>
fn watch(&self) -> Self::WatchResponseFut
type SetResponseFut = QueryResponseFut<Result<(), Error>>
fn set(&self, settings: DoNotDisturbSettings) -> Self::SetResponseFut
source§impl Proxy for DoNotDisturbProxy
impl Proxy for DoNotDisturbProxy
§type Protocol = DoNotDisturbMarker
type Protocol = DoNotDisturbMarker
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