#[repr(C)]pub struct AzDebugMessage {
pub message: AzString,
pub source: GLenum,
pub ty: GLenum,
pub id: GLenum,
pub severity: GLenum,
}Fields§
§message: AzString§source: GLenum§ty: GLenum§id: GLenum§severity: GLenumTrait Implementations§
Source§impl Clone for AzDebugMessage
impl Clone for AzDebugMessage
Source§fn clone(&self) -> AzDebugMessage
fn clone(&self) -> AzDebugMessage
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 moreSource§impl Debug for AzDebugMessage
impl Debug for AzDebugMessage
Source§impl FromIterator<AzDebugMessage> for AzDebugMessageVec
impl FromIterator<AzDebugMessage> for AzDebugMessageVec
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = AzDebugMessage>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = AzDebugMessage>,
Creates a value from an iterator. Read more
Source§impl Hash for AzDebugMessage
impl Hash for AzDebugMessage
Source§impl Ord for AzDebugMessage
impl Ord for AzDebugMessage
Source§fn cmp(&self, other: &AzDebugMessage) -> Ordering
fn cmp(&self, other: &AzDebugMessage) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AzDebugMessage
impl PartialEq for AzDebugMessage
Source§impl PartialOrd for AzDebugMessage
impl PartialOrd for AzDebugMessage
impl Eq for AzDebugMessage
impl StructuralPartialEq for AzDebugMessage
Auto Trait Implementations§
impl Freeze for AzDebugMessage
impl RefUnwindSafe for AzDebugMessage
impl Send for AzDebugMessage
impl Sync for AzDebugMessage
impl Unpin for AzDebugMessage
impl UnwindSafe for AzDebugMessage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more