#[repr(C)]pub struct DebugMessage {
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 DebugMessage
impl Clone for DebugMessage
Source§fn clone(&self) -> DebugMessage
fn clone(&self) -> DebugMessage
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 DebugMessage
impl Debug for DebugMessage
Source§impl FromIterator<DebugMessage> for DebugMessageVec
impl FromIterator<DebugMessage> for DebugMessageVec
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = DebugMessage>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = DebugMessage>,
Creates a value from an iterator. Read more
Source§impl Hash for DebugMessage
impl Hash for DebugMessage
Source§impl Ord for DebugMessage
impl Ord for DebugMessage
Source§fn cmp(&self, other: &DebugMessage) -> Ordering
fn cmp(&self, other: &DebugMessage) -> 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 DebugMessage
impl PartialEq for DebugMessage
Source§impl PartialOrd for DebugMessage
impl PartialOrd for DebugMessage
impl Eq for DebugMessage
impl StructuralPartialEq for DebugMessage
Auto Trait Implementations§
impl Freeze for DebugMessage
impl RefUnwindSafe for DebugMessage
impl Send for DebugMessage
impl Sync for DebugMessage
impl Unpin for DebugMessage
impl UnwindSafe for DebugMessage
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