#[non_exhaustive]#[repr(u8)]pub enum ViewboxSlot {
Child = 0,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Child = 0
Trait Implementations§
Source§impl Clone for ViewboxSlot
impl Clone for ViewboxSlot
Source§fn clone(&self) -> ViewboxSlot
fn clone(&self) -> ViewboxSlot
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 ViewboxSlot
Source§impl Debug for ViewboxSlot
impl Debug for ViewboxSlot
impl Eq for ViewboxSlot
Source§impl Hash for ViewboxSlot
impl Hash for ViewboxSlot
Source§impl PartialEq for ViewboxSlot
impl PartialEq for ViewboxSlot
impl StructuralPartialEq for ViewboxSlot
Auto Trait Implementations§
impl Freeze for ViewboxSlot
impl RefUnwindSafe for ViewboxSlot
impl Send for ViewboxSlot
impl Sync for ViewboxSlot
impl Unpin for ViewboxSlot
impl UnsafeUnpin for ViewboxSlot
impl UnwindSafe for ViewboxSlot
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