pub enum PodArray {
}
Variants§
Boolean(Vec<bool>)
U8(Vec<u8>)
I8(Vec<i8>)
U16(Vec<u16>)
I16(Vec<i16>)
U32(Vec<u32>)
I32(Vec<i32>)
U64(Vec<u64>)
I64(Vec<i64>)
F16(Vec<f16>)
F32(Vec<f32>)
F64(Vec<f64>)
String(Vec<String>)
WString(Vec<String>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PodArray
impl RefUnwindSafe for PodArray
impl Send for PodArray
impl Sync for PodArray
impl Unpin for PodArray
impl UnwindSafe for PodArray
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