pub enum BlendError {
NonFiniteAlpha(f32),
}Expand description
合成の引数が不正だった場合のエラー。
Variants§
Trait Implementations§
Source§impl Clone for BlendError
impl Clone for BlendError
Source§fn clone(&self) -> BlendError
fn clone(&self) -> BlendError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BlendError
Source§impl Debug for BlendError
impl Debug for BlendError
Source§impl PartialEq for BlendError
impl PartialEq for BlendError
Source§fn eq(&self, other: &BlendError) -> bool
fn eq(&self, other: &BlendError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlendError
Auto Trait Implementations§
impl Freeze for BlendError
impl RefUnwindSafe for BlendError
impl Send for BlendError
impl Sync for BlendError
impl Unpin for BlendError
impl UnsafeUnpin for BlendError
impl UnwindSafe for BlendError
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