pub enum CompositionOutcome {
Generated(ComposedSurface),
Fallback {
surface: Surface,
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for CompositionOutcome
impl Clone for CompositionOutcome
Source§fn clone(&self) -> CompositionOutcome
fn clone(&self) -> CompositionOutcome
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 moreAuto Trait Implementations§
impl Freeze for CompositionOutcome
impl RefUnwindSafe for CompositionOutcome
impl Send for CompositionOutcome
impl Sync for CompositionOutcome
impl Unpin for CompositionOutcome
impl UnsafeUnpin for CompositionOutcome
impl UnwindSafe for CompositionOutcome
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