pub struct RpSubType<F>where
F: Flavor + 'static,{
pub name: F::Name,
pub ident: String,
pub comment: Vec<String>,
pub decls: Vec<RpDecl<F>>,
pub fields: Vec<Loc<F::Field>>,
pub codes: Vec<Loc<RpCode>>,
pub sub_type_name: Option<Loc<String>>,
}Fields§
§name: F::Name§ident: String§comment: Vec<String>§decls: Vec<RpDecl<F>>Inner declarations.
fields: Vec<Loc<F::Field>>§codes: Vec<Loc<RpCode>>§sub_type_name: Option<Loc<String>>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for RpSubType<F>
impl<F> RefUnwindSafe for RpSubType<F>where
<F as Flavor>::Name: RefUnwindSafe,
<F as Flavor>::Field: RefUnwindSafe,
<F as Flavor>::EnumType: RefUnwindSafe,
<F as Flavor>::Endpoint: RefUnwindSafe,
impl<F> Send for RpSubType<F>
impl<F> Sync for RpSubType<F>
impl<F> Unpin for RpSubType<F>
impl<F> UnwindSafe for RpSubType<F>where
<F as Flavor>::Name: UnwindSafe,
<F as Flavor>::Field: UnwindSafe,
<F as Flavor>::EnumType: UnwindSafe,
<F as Flavor>::Endpoint: UnwindSafe,
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