pub struct SurfaceListEntry {
pub surface_id: u16,
pub parent_id: u16,
pub width: u16,
pub height: u16,
pub title: String,
pub app_id: String,
}Fields§
§surface_id: u16§parent_id: u16§width: u16§height: u16§title: String§app_id: StringTrait Implementations§
Source§impl Clone for SurfaceListEntry
impl Clone for SurfaceListEntry
Source§fn clone(&self) -> SurfaceListEntry
fn clone(&self) -> SurfaceListEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SurfaceListEntry
impl Debug for SurfaceListEntry
Source§impl PartialEq for SurfaceListEntry
impl PartialEq for SurfaceListEntry
Source§fn eq(&self, other: &SurfaceListEntry) -> bool
fn eq(&self, other: &SurfaceListEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SurfaceListEntry
impl StructuralPartialEq for SurfaceListEntry
Auto Trait Implementations§
impl Freeze for SurfaceListEntry
impl RefUnwindSafe for SurfaceListEntry
impl Send for SurfaceListEntry
impl Sync for SurfaceListEntry
impl Unpin for SurfaceListEntry
impl UnsafeUnpin for SurfaceListEntry
impl UnwindSafe for SurfaceListEntry
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