pub struct LampArrayAttributes {
pub lamp_count: u16,
pub width_um: u32,
pub height_um: u32,
pub depth_um: u32,
pub kind: u32,
pub kind_name: &'static str,
pub min_update_interval_us: u32,
}Expand description
LampArray device attributes (Section 26.2).
Fields§
§lamp_count: u16§width_um: u32Bounding box in micrometers.
height_um: u32§depth_um: u32§kind: u32§kind_name: &'static str§min_update_interval_us: u32Trait Implementations§
Source§impl Clone for LampArrayAttributes
impl Clone for LampArrayAttributes
Source§fn clone(&self) -> LampArrayAttributes
fn clone(&self) -> LampArrayAttributes
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LampArrayAttributes
impl RefUnwindSafe for LampArrayAttributes
impl Send for LampArrayAttributes
impl Sync for LampArrayAttributes
impl Unpin for LampArrayAttributes
impl UnsafeUnpin for LampArrayAttributes
impl UnwindSafe for LampArrayAttributes
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
Mutably borrows from an owned value. Read more