pub enum Frames {
I8(Vec<Frame<i8>>),
I16(Vec<Frame<i16>>),
I32(Vec<Frame<i32>>),
I64(Vec<Frame<i64>>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Frames
impl RefUnwindSafe for Frames
impl Send for Frames
impl Sync for Frames
impl Unpin for Frames
impl UnwindSafe for Frames
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