#![allow(unused_variables)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(unused_parens)]
#![allow(unused_assignments)]
#![allow(unused_mut)]
#![allow(unused_imports)]
#![allow(dead_code)]
extern crate alloc;
use crate::tstr;
use alloc::string::String;
use Strunion::*;
#[derive(Eq, PartialEq, Hash)]
pub enum Strunion<const N: usize> {
fixed(tstr<N>),
owned(String),
}
impl<const N: usize> Clone for Strunion<N> {
fn clone(&self) -> Self {
match &self {
fixed(s) => fixed(*s),
owned(s) => owned(s.clone()),
} }
}