Struct syn::DataStruct
source · [−]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
sourceimpl Clone for DataStruct
impl Clone for DataStruct
sourceimpl Debug for DataStruct
impl Debug for DataStruct
sourceimpl From<DataStruct> for Data
impl From<DataStruct> for Data
sourcefn from(e: DataStruct) -> Data
fn from(e: DataStruct) -> Data
Performs the conversion.
sourceimpl Hash for DataStruct
impl Hash for DataStruct
sourceimpl PartialEq<DataStruct> for DataStruct
impl PartialEq<DataStruct> for DataStruct
impl Eq for DataStruct
Auto Trait Implementations
impl RefUnwindSafe for DataStruct
impl !Send for DataStruct
impl !Sync for DataStruct
impl Unpin for DataStruct
impl UnwindSafe for DataStruct
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more