pub enum Bundle {
Drum2Bank(Bank),
Drum3KitBank(KitBank),
Electro5(Bundle),
Members(Vec<(String, Cbin<RawBody>)>),
}Expand description
A ZIP archive: an Electro 5 bundle or backup, or a Drum-family bank.
Variants§
Drum2Bank(Bank)
Drum3KitBank(KitBank)
Electro5(Bundle)
Members(Vec<(String, Cbin<RawBody>)>)
A ZIP of CBIN files under any mix of tags — every model’s bundle/backup shape. Reported by public documentation; not confirmed on hardware. Members are kept container-verified and raw, under their archive paths — which encode the slot, uninterpreted here.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bundle
impl RefUnwindSafe for Bundle
impl Send for Bundle
impl Sync for Bundle
impl Unpin for Bundle
impl UnsafeUnpin for Bundle
impl UnwindSafe for Bundle
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