Struct devise::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.
Fields§
§struct_token: Struct
§fields: Fields
§semi_token: Option<Semi>
Trait Implementations§
source§impl Clone for DataStruct
impl Clone for DataStruct
source§fn clone(&self) -> DataStruct
fn clone(&self) -> DataStruct
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DataStruct
impl Debug for DataStruct
source§impl Hash for DataStruct
impl Hash for DataStruct
source§impl PartialEq<DataStruct> for DataStruct
impl PartialEq<DataStruct> for DataStruct
source§fn eq(&self, other: &DataStruct) -> bool
fn eq(&self, other: &DataStruct) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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