pub struct BlendComponent {
pub src_factor: BlendFactor,
pub dst_factor: BlendFactor,
pub operation: BlendOperation,
}Fields§
§src_factor: BlendFactor§dst_factor: BlendFactor§operation: BlendOperationTrait Implementations§
Source§impl Clone for BlendComponent
impl Clone for BlendComponent
Source§fn clone(&self) -> BlendComponent
fn clone(&self) -> BlendComponent
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 BlendComponent
impl Debug for BlendComponent
Source§impl<'de> Deserialize<'de> for BlendComponent
impl<'de> Deserialize<'de> for BlendComponent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for BlendComponent
impl Serialize for BlendComponent
impl Copy for BlendComponent
Auto Trait Implementations§
impl Freeze for BlendComponent
impl RefUnwindSafe for BlendComponent
impl Send for BlendComponent
impl Sync for BlendComponent
impl Unpin for BlendComponent
impl UnwindSafe for BlendComponent
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