pub struct KdeExternalBrightnessDeviceV1 { /* private fields */ }
Expand description
brightness control device
After creating this object, the client should issue all relevant setup requests (set_internal, set_edid, set_max_brightness, optionally set_observed_brightness) and finish the sequence with commit. Afterwards, for each change in values, the client must call commit again.
See also the Event enum for this interface.
Implementations§
Source§impl KdeExternalBrightnessDeviceV1
impl KdeExternalBrightnessDeviceV1
Sourcepub fn set_internal(&self, internal: u32)
pub fn set_internal(&self, internal: u32)
sets whether or not the brightness device belongs to an internal display
Sourcepub fn set_max_brightness(&self, value: u32)
pub fn set_max_brightness(&self, value: u32)
notifies the compositor of the maximum brightness that can be set on this device
Sourcepub fn commit(&self)
pub fn commit(&self)
notifies the compositor that all relevant identifiers and values have been sent
Sourcepub fn set_observed_brightness(&self, value: u32)
pub fn set_observed_brightness(&self, value: u32)
notifies the compositor of the brightness that was read from this device
The client can set this to notify the compositor of the device’s initial brightness. It can also set this again after the initial commit to notify the compositor that the brightness level has changed due to external factors. The compositor is free to use or ignore this value as it sees fit.
Trait Implementations§
Source§impl Clone for KdeExternalBrightnessDeviceV1
impl Clone for KdeExternalBrightnessDeviceV1
Source§fn clone(&self) -> KdeExternalBrightnessDeviceV1
fn clone(&self) -> KdeExternalBrightnessDeviceV1
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Hash for KdeExternalBrightnessDeviceV1
impl Hash for KdeExternalBrightnessDeviceV1
Source§impl PartialEq<Weak<KdeExternalBrightnessDeviceV1>> for KdeExternalBrightnessDeviceV1
impl PartialEq<Weak<KdeExternalBrightnessDeviceV1>> for KdeExternalBrightnessDeviceV1
Source§impl PartialEq for KdeExternalBrightnessDeviceV1
impl PartialEq for KdeExternalBrightnessDeviceV1
Source§fn eq(&self, other: &KdeExternalBrightnessDeviceV1) -> bool
fn eq(&self, other: &KdeExternalBrightnessDeviceV1) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl Proxy for KdeExternalBrightnessDeviceV1
impl Proxy for KdeExternalBrightnessDeviceV1
Source§fn data<U: Send + Sync + 'static>(&self) -> Option<&U>
fn data<U: Send + Sync + 'static>(&self) -> Option<&U>
Source§fn object_data(&self) -> Option<&Arc<dyn ObjectData>>
fn object_data(&self) -> Option<&Arc<dyn ObjectData>>
Source§fn backend(&self) -> &WeakBackend
fn backend(&self) -> &WeakBackend
Source§fn send_request(&self, req: Self::Request<'_>) -> Result<(), InvalidId>
fn send_request(&self, req: Self::Request<'_>) -> Result<(), InvalidId>
Source§fn send_constructor<I: Proxy>(
&self,
req: Self::Request<'_>,
data: Arc<dyn ObjectData>,
) -> Result<I, InvalidId>
fn send_constructor<I: Proxy>( &self, req: Self::Request<'_>, data: Arc<dyn ObjectData>, ) -> Result<I, InvalidId>
Source§fn from_id(conn: &Connection, id: ObjectId) -> Result<Self, InvalidId>
fn from_id(conn: &Connection, id: ObjectId) -> Result<Self, InvalidId>
Source§fn inert(backend: WeakBackend) -> Self
fn inert(backend: WeakBackend) -> Self
Source§fn parse_event(
conn: &Connection,
msg: Message<ObjectId, OwnedFd>,
) -> Result<(Self, Self::Event), DispatchError>
fn parse_event( conn: &Connection, msg: Message<ObjectId, OwnedFd>, ) -> Result<(Self, Self::Event), DispatchError>
Source§fn write_request<'a>(
&self,
conn: &Connection,
msg: Self::Request<'a>,
) -> Result<(Message<ObjectId, BorrowedFd<'a>>, Option<(&'static Interface, u32)>), InvalidId>
fn write_request<'a>( &self, conn: &Connection, msg: Self::Request<'a>, ) -> Result<(Message<ObjectId, BorrowedFd<'a>>, Option<(&'static Interface, u32)>), InvalidId>
impl Eq for KdeExternalBrightnessDeviceV1
Auto Trait Implementations§
impl Freeze for KdeExternalBrightnessDeviceV1
impl !RefUnwindSafe for KdeExternalBrightnessDeviceV1
impl Send for KdeExternalBrightnessDeviceV1
impl Sync for KdeExternalBrightnessDeviceV1
impl Unpin for KdeExternalBrightnessDeviceV1
impl !UnwindSafe for KdeExternalBrightnessDeviceV1
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.