Struct wgsl_bindgen::SourceLocation
source · pub struct SourceLocation {
pub line_number: usize,
pub line_position: usize,
pub offset: usize,
pub length: usize,
}Fields§
§line_number: usize1-based line number.
line_position: usize1-based column of the start of this span
offset: usize0-based Offset in code units (in bytes) of the start of the span.
length: usizeLength in code units (in bytes) of the span.
Trait Implementations§
source§impl Clone for SourceLocation
impl Clone for SourceLocation
source§fn clone(&self) -> SourceLocation
fn clone(&self) -> SourceLocation
Returns a copy 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 SourceLocation
impl Debug for SourceLocation
source§impl From<&SourceLocation> for SourceSpan
impl From<&SourceLocation> for SourceSpan
source§fn from(value: &SourceLocation) -> SourceSpan
fn from(value: &SourceLocation) -> SourceSpan
Converts to this type from the input type.
source§impl PartialEq for SourceLocation
impl PartialEq for SourceLocation
source§fn eq(&self, other: &SourceLocation) -> bool
fn eq(&self, other: &SourceLocation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for SourceLocation
impl StructuralPartialEq for SourceLocation
Auto Trait Implementations§
impl RefUnwindSafe for SourceLocation
impl Send for SourceLocation
impl Sync for SourceLocation
impl Unpin for SourceLocation
impl UnwindSafe for SourceLocation
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.