pub enum DataContent {
Texel(Vec<Texel>),
Bytes(Vec<u8>),
}Variants§
Trait Implementations§
Source§impl Clone for DataContent
impl Clone for DataContent
Source§fn clone(&self) -> DataContent
fn clone(&self) -> DataContent
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 DataContent
impl RefUnwindSafe for DataContent
impl Send for DataContent
impl Sync for DataContent
impl Unpin for DataContent
impl UnsafeUnpin for DataContent
impl UnwindSafe for DataContent
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