pub struct DataStruct {
pub struct_token: Struct,
pub fields: Fields,
pub semi_token: Option<Semi>,
}Expand description
A struct input to a proc_macro_derive macro.
This type is available only if Syn is built with the "derive"
feature.
Fields§
§struct_token: Struct§fields: Fields§semi_token: Option<Semi>Trait Implementations§
Source§impl Clone for DataStruct
Available on crate feature derive only.
impl Clone for DataStruct
Available on crate feature
derive only.Source§fn clone(&self) -> DataStruct
fn clone(&self) -> DataStruct
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<DataStruct> for Data
impl From<DataStruct> for Data
Source§fn from(e: DataStruct) -> Data
fn from(e: DataStruct) -> Data
Converts to this type from the input type.
Auto Trait Implementations§
impl !Send for DataStruct
impl !Sync for DataStruct
impl Freeze for DataStruct
impl RefUnwindSafe for DataStruct
impl Unpin for DataStruct
impl UnsafeUnpin for DataStruct
impl UnwindSafe for DataStruct
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