pub struct EglAttributes {
pub name: u32,
pub width: i32,
pub height: i32,
pub stride: u32,
pub format: u32,
}Expand description
Attributes for creation EGL image.
Fields§
§name: u32§width: i32§height: i32§stride: u32§format: u32Implementations§
Trait Implementations§
Source§impl Clone for EglAttributes
impl Clone for EglAttributes
Source§fn clone(&self) -> EglAttributes
fn clone(&self) -> EglAttributes
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 EglAttributes
impl RefUnwindSafe for EglAttributes
impl Send for EglAttributes
impl Sync for EglAttributes
impl Unpin for EglAttributes
impl UnwindSafe for EglAttributes
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