pub struct DataUnion {
pub union_token: Union,
pub fields: FieldsNamed,
}
Expand description
An untagged union input to a proc_macro_derive
macro.
This type is available only if Syn is built with the "derive"
feature.
Fields§
§union_token: Union
§fields: FieldsNamed
Trait Implementations§
impl Eq for DataUnion
Auto Trait Implementations§
impl Freeze for DataUnion
impl RefUnwindSafe for DataUnion
impl !Send for DataUnion
impl !Sync for DataUnion
impl Unpin for DataUnion
impl UnwindSafe for DataUnion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
Source§fn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.