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