pub struct ZwlrOutputPowerV1 { /* private fields */ }
Expand description
adjust power management mode for an output
This object offers requests to set the power management mode of an output.
See also the Request enum for this interface.
Implementations§
Source§impl ZwlrOutputPowerV1
impl ZwlrOutputPowerV1
Sourcepub fn mode(&self, mode: Mode)
pub fn mode(&self, mode: Mode)
Report a power management mode change
Report the power management mode change of an output.
The mode event is sent after an output changed its power management mode. The reason can be a client using set_mode or the compositor deciding to change an output’s mode. This event is also sent immediately when the object is created so the client is informed about the current power management mode.
Sourcepub fn failed(&self)
pub fn failed(&self)
object no longer valid
This event indicates that the output power management mode control is no longer valid. This can happen for a number of reasons, including:
- The output doesn’t support power management
- Another client already has exclusive power management mode control for this output
- The output disappeared
Upon receiving this event, the client should destroy this object.
Trait Implementations§
Source§impl Borrow<ObjectId> for ZwlrOutputPowerV1
impl Borrow<ObjectId> for ZwlrOutputPowerV1
Source§impl Clone for ZwlrOutputPowerV1
impl Clone for ZwlrOutputPowerV1
Source§fn clone(&self) -> ZwlrOutputPowerV1
fn clone(&self) -> ZwlrOutputPowerV1
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ZwlrOutputPowerV1
impl Debug for ZwlrOutputPowerV1
Source§impl Hash for ZwlrOutputPowerV1
impl Hash for ZwlrOutputPowerV1
Source§impl PartialEq<Weak<ZwlrOutputPowerV1>> for ZwlrOutputPowerV1
impl PartialEq<Weak<ZwlrOutputPowerV1>> for ZwlrOutputPowerV1
Source§impl PartialEq for ZwlrOutputPowerV1
impl PartialEq for ZwlrOutputPowerV1
Source§impl Resource for ZwlrOutputPowerV1
impl Resource for ZwlrOutputPowerV1
Source§fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
Source§fn handle(&self) -> &WeakHandle
fn handle(&self) -> &WeakHandle
Source§fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
Source§fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
Source§fn parse_request(
conn: &DisplayHandle,
msg: Message<ObjectId, OwnedFd>,
) -> Result<(Self, Self::Request), DispatchError>
fn parse_request( conn: &DisplayHandle, msg: Message<ObjectId, OwnedFd>, ) -> Result<(Self, Self::Request), DispatchError>
Source§fn write_event<'a>(
&self,
conn: &DisplayHandle,
msg: Self::Event<'a>,
) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
fn write_event<'a>( &self, conn: &DisplayHandle, msg: Self::Event<'a>, ) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
Source§fn is_alive(&self) -> bool
fn is_alive(&self) -> bool
impl Eq for ZwlrOutputPowerV1
Auto Trait Implementations§
impl Freeze for ZwlrOutputPowerV1
impl !RefUnwindSafe for ZwlrOutputPowerV1
impl Send for ZwlrOutputPowerV1
impl Sync for ZwlrOutputPowerV1
impl Unpin for ZwlrOutputPowerV1
impl !UnwindSafe for ZwlrOutputPowerV1
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.