Struct fidl_fuchsia_settings::NightModeProxy
source · pub struct NightModeProxy { /* private fields */ }
Implementations§
source§impl NightModeProxy
impl NightModeProxy
sourcepub fn take_event_stream(&self) -> NightModeEventStream
pub fn take_event_stream(&self) -> NightModeEventStream
Get a Stream of events from the remote end of the NightMode protocol
Panics
Panics if the event stream was already taken.
sourcepub fn watch(&self) -> QueryResponseFut<NightModeSettings>
pub fn watch(&self) -> QueryResponseFut<NightModeSettings>
Gets the current NightModeSettings
. 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: NightModeSettings
) -> QueryResponseFut<NightModeSetResult>
pub fn set( &self, settings: NightModeSettings ) -> QueryResponseFut<NightModeSetResult>
Sets NightModeSettings
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 NightModeProxy
impl Clone for NightModeProxy
source§fn clone(&self) -> NightModeProxy
fn clone(&self) -> NightModeProxy
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 NightModeProxy
impl Debug for NightModeProxy
source§impl NightModeProxyInterface for NightModeProxy
impl NightModeProxyInterface for NightModeProxy
type WatchResponseFut = QueryResponseFut<NightModeSettings>
fn watch(&self) -> Self::WatchResponseFut
type SetResponseFut = QueryResponseFut<Result<(), Error>>
fn set(&self, settings: NightModeSettings) -> Self::SetResponseFut
source§impl Proxy for NightModeProxy
impl Proxy for NightModeProxy
§type Protocol = NightModeMarker
type Protocol = NightModeMarker
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