gausplat_renderer::error::polygon::header

Enum Format

source
pub enum Format {
    BinaryLittleEndian,
    Ascii,
    BinaryBigEndian,
}
Expand description

Polygon format.

Variants§

§

BinaryLittleEndian

Binary little endian format.

§

Ascii

ASCII format.

§

BinaryBigEndian

Binary big endian format.

Implementations§

source§

impl Format

source

pub const fn is_binary_little_endian(&self) -> bool

Returns true if this value is of type BinaryLittleEndian. Returns false otherwise

source

pub const fn is_ascii(&self) -> bool

Returns true if this value is of type Ascii. Returns false otherwise

source

pub const fn is_binary_big_endian(&self) -> bool

Returns true if this value is of type BinaryBigEndian. Returns false otherwise

source§

impl Format

source

pub fn try_unwrap_binary_little_endian( self, ) -> Result<(), TryUnwrapError<Format>>

Attempts to unwrap this value to the Format::BinaryLittleEndian variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_binary_little_endian_ref( &self, ) -> Result<(), TryUnwrapError<&Format>>

Attempts to unwrap this reference to the Format::BinaryLittleEndian variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_binary_little_endian_mut( &mut self, ) -> Result<(), TryUnwrapError<&mut Format>>

Attempts to unwrap this mutable reference to the Format::BinaryLittleEndian variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_ascii(self) -> Result<(), TryUnwrapError<Format>>

Attempts to unwrap this value to the Format::Ascii variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_ascii_ref(&self) -> Result<(), TryUnwrapError<&Format>>

Attempts to unwrap this reference to the Format::Ascii variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_ascii_mut( &mut self, ) -> Result<(), TryUnwrapError<&mut Format>>

Attempts to unwrap this mutable reference to the Format::Ascii variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_binary_big_endian(self) -> Result<(), TryUnwrapError<Format>>

Attempts to unwrap this value to the Format::BinaryBigEndian variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_binary_big_endian_ref( &self, ) -> Result<(), TryUnwrapError<&Format>>

Attempts to unwrap this reference to the Format::BinaryBigEndian variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source

pub fn try_unwrap_binary_big_endian_mut( &mut self, ) -> Result<(), TryUnwrapError<&mut Format>>

Attempts to unwrap this mutable reference to the Format::BinaryBigEndian variant. Returns a [TryUnwrapError] with the original value if this value is of any other type.

source§

impl Format

source

pub const fn is_binary_native_endian(&self) -> bool

Check if the format is binary little endian.

source

pub const fn binary_native_endian() -> Format

Return the binary format with native endianness.

Trait Implementations§

source§

impl AsRef<Format> for Header

source§

fn as_ref(&self) -> &Format

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Format

source§

fn clone(&self) -> Format

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Format

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Format

source§

fn default() -> Format

Returns the “default value” for a type. Read more
source§

impl Display for Format

source§

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Hash for Format

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Format

source§

fn eq(&self, other: &Format) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Format

source§

impl Eq for Format

source§

impl StructuralPartialEq for Format

Auto Trait Implementations§

§

impl Freeze for Format

§

impl RefUnwindSafe for Format

§

impl Send for Format

§

impl Sync for Format

§

impl Unpin for Format

§

impl UnwindSafe for Format

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

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
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,