#[repr(C)]pub struct VertexShaderCompileError {
pub error_id: i32,
pub info_log: AzString,
}Fields§
§error_id: i32§info_log: AzStringTrait Implementations§
Source§impl Clone for VertexShaderCompileError
impl Clone for VertexShaderCompileError
Source§fn clone(&self) -> VertexShaderCompileError
fn clone(&self) -> VertexShaderCompileError
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 VertexShaderCompileError
impl Debug for VertexShaderCompileError
Source§impl Display for VertexShaderCompileError
impl Display for VertexShaderCompileError
Source§impl Hash for VertexShaderCompileError
impl Hash for VertexShaderCompileError
Source§impl Ord for VertexShaderCompileError
impl Ord for VertexShaderCompileError
Source§impl PartialEq for VertexShaderCompileError
impl PartialEq for VertexShaderCompileError
Source§impl PartialOrd for VertexShaderCompileError
impl PartialOrd for VertexShaderCompileError
impl Eq for VertexShaderCompileError
Auto Trait Implementations§
impl Freeze for VertexShaderCompileError
impl RefUnwindSafe for VertexShaderCompileError
impl Send for VertexShaderCompileError
impl Sync for VertexShaderCompileError
impl Unpin for VertexShaderCompileError
impl UnwindSafe for VertexShaderCompileError
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